#prevDay, #nextDay {
    display: inline-block;
}

.prev-link, .next-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    color: #2276ac;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;            
}

.arrow {
    font-size: 2em;
    line-height: 1;
    opacity: 0.8;
    text-decoration: none;
}

.prev-link:hover, .next-link:hover {
    color: #004a99;
    transform: translateY(-1px);
    text-decoration: none !important;
}

.prev-link:hover .arrow {
    transform: translateX(-3px);
    opacity: 1;
}

.next-link:hover .arrow {
    transform: translateX(3px);
    opacity: 1;
}

.prev-link:hover .date, .next-link:hover .date {
    text-decoration: underline;   /* underline only the date on hover */
}

#daysButtons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1em 0;
    padding: 0 1em; 
}

.date {
    font-size: 16px;
    margin-top: 3px;
}