
/* Itinerary list */
#itineraryList {
    padding-left: 0;
}

#itineraryList li:nth-child(odd) {
    background-color: #f0f0f0;
    padding: 1px;
    border-radius: 2px;
}

#itineraryList li:nth-child(even) {
    background-color: #ffffff;
    padding: 1px;
    border-radius: 2px;
}

/* Day buttons */
#days a {
    text-decoration: none;
    font-weight: bold;
    color: #007BFF;
}

#days a:hover {
    color: #0056b3;
}

/* Layout */
.row-container {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.col {
    flex: 1;
    background: #f2f2f2;
    padding: 5px;
    display: inline-block;
}

/* City name link */
.manage-city {
    padding-left: 0;
    cursor: pointer;
    color: #007BFF;
    text-decoration: underline;
}

.manage-city:hover {
    color: #0056b3;
}

/* Date line — forced to next line */
.date-small {
    font-size: 0.8em;
    color: #696969;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1.1;
    display: block;
    flex-basis: 100%; /* forces new line inside flexbox */
}