* {
    padding:0;
    margin:0;
    font-family: 'Ms Madi', cursive;
}

body, html {
    position:relative;
    height:100%;
    width:100%;
}

#map {
    height:100%;
    width:100%;
}

#xy {
    display:none;
}

#ribbon {
    display: none;
    width: 150px;
    padding: 15px;
    position: fixed;
    top: 10px;
    right: -55px;
    transform: rotate(45deg);
    text-align: center;
    color: #f0f0f0;
    font-size: 25px;
    font-family: 'Share Tech Mono', monospace;
    background-color: #e82;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 11px 10px;
    color: rgb(64, 90, 130);
    font-size: 14px;
    font-family: 'Share Tech Mono', monospace;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
}

#link a {
    font-family: 'Share Tech Mono', monospace;
    color: rgba(64, 90, 130, 1);
    text-decoration: none;
}

#link a:hover {
    text-decoration: underline;
}

#stream {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

#stream div.message {
    display: none;
    margin-top: 20px;
    padding: 0;
    background-color: rgba(64, 90, 130, 0.6);
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#stream div.message p, #stream div.message p strike {
    min-width: 300px;
    padding: 10px 10px 8px 10px;
    font-size: 14px;
    font-family: 'Share Tech Mono', monospace;
    color: white;
}

#stream div.message div.bar {
    height: 5px;
    width: 0%;
    background-color: rgb(64, 90, 130);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#choixPorts {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    display: none; /* Pour cacher temporairement la fonctionnalité d'optimisation de tournée*/
}

#choixPorts select {
    width: 250px;
    margin-bottom: 10px;
    padding: 10px;
    color: rgb(64, 90, 130);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Share Tech Mono', monospace;
}

#tournee {
    position: absolute;
    top: 130px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 5px;
}

#tournee ul {
    width: 250px;
    list-style-type: none;
}

#tournee ul li {
    position: relative;
    padding: 7px;
    color: rgb(64, 90, 130);
    font-size: 14px;
    font-family: 'Share Tech Mono', monospace;
    border-bottom: 1px solid rgba(64, 90, 130, 0.2);
    border-top: 1px solid rgba(64, 90, 130, 0.2);
}

#tournee ul li span {
    display: block;
    position: absolute;
    padding: 2px 5px;
    top: -10px;
    right: 10px;
    color: rgb(64, 90, 130);
    font-size: 12px;
    font-weight: normal;
    font-family: 'Share Tech Mono', monospace;
    background-color: white;
    border-radius: 5px;
}

#tournee ul.sortable li {
    cursor: row-resize;
}

#tournee ul.depart li, #tournee ul.arrivee li {
    cursor: not-allowed;
    font-weight: bold;
    color: #e0225b;
}