
.cities {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 0.5em;
    overflow-x: auto;
    padding-block: 10px;
    padding-top: 0px;
    cursor: grab; /* Change cursor to grab for better UX */

}

.cities::-webkit-scrollbar {
    display: none; /* Hide scrollbar in Chrome, Safari, and newer Edge */
}

.cities.active {
    cursor: grabbing; /* Change cursor when actively scrolling */
}

.cities .city {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
    user-select: none;
}

.cities .item {
    flex: 0 0 5em;
    padding: 0.25em;
    background-color: #032055;
    border: 1px solid #032055;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;


}

.now {
    color: rgb(237 237 237);
    font-weight: 500;
    font-size: 15px;
    padding: 10px;

}


.date {
    margin-top: 2px;
    color: rgb(237 237 237);
    font-size: 10px;
    line-height: 14px;
    text-transform: uppercase;
}

.cities .item.selected {
    border: 1px solid #31d7a9;
}

@media (min-width: 992px) {
    .cities {

        display: none;
        padding-block: 40px !important;
        padding-block-start: 0 !important;
    }
}
