/* ======================================
   DATE CONTROLS
====================================== */

/* Container tweak */
#ff-date-bar {
    justify-content: center;
}

/* Base button */
#ff-date-bar button {
    min-width: 52px;
    line-height: 1.1;
    transition: all 0.18s ease;
}

/* DAY (top number) */
#ff-date-bar button span:first-child {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

/* MONTH (bottom text) */
#ff-date-bar button span:last-child {
    font-size: 11px;
    opacity: 0.7;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Hover lift */
#ff-date-bar button:hover:not(:disabled) {
    transform: translateY(-1px);
}

/* ?? HOVER COLOR FIX (overrides Bootstrap text-muted) */
#ff-date-bar button:hover span {
    color: #fff;
    opacity: 0.9;
}

/* ?? ACTIVE STATE (force full white) */
#ff-date-bar button.btn-primary span {
    color: #fff;
    opacity: 0.95;
}

/* Disabled */
#ff-date-bar button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

#ff-date-bar button.btn-primary {
    box-shadow:
        0 6px 14px rgba(30, 115, 190, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

#ff-date-bar button {
    transition: all 0.2s ease;
}