.map-rotation {
    width: 60%;
    margin: auto;
}

#date {
    font-weight: bold;
    padding: 0px;
}

.timeline-container {
    display: flex;
    width: 90%;
    margin: auto;
    font-family: sans-serif;
    font-family: 'Manrope', sans-serif;
}

.labels {
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 18px;

}


.labels>*:nth-child(odd) {

    background: #1a1818;
    width: 100%;
    padding-right: 25px;
}

.labels>*:nth-child(even) {
    background: #242424;
    width: 100%;
    padding-right: 25px;
}

.timeline-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-scroll>*:nth-child(even) {
    background: #242424;

}

.week-row:first-child {
    border-top: white 2px solid;
    border-bottom: white 2px solid;

    border-radius: 5px;
    display: flex;
    height: 21px;
    position: sticky;
}

.week-row {
    display: flex;
    flex-direction: row;
    white-space: nowrap;
    
    /* width: 100 * amount; */

}

.label {
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: bold;
    overflow: hidden;
    text-wrap: nowrap;


}

.cell {
    width: 100px;
    height: 25px;

}

.cell.active {
    background-color: #04AA6D;
}

.cell.added {
    background-color: #04AA6D;
    border-radius: 0px 5px 5px 0px;
}

.cell.removed {
    background-color: #04AA6D;
    border-radius: 5px 0px 0px 5px;
}

@media only screen and (max-width: 900px) {

}


/*  MAP  */

.map-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px auto 0px auto;

    > img {
        max-width: 90%;
        height: auto;
        border-radius: 10px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}

.map-details {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(to bottom, #242424, transparent);
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}