/* public/css/agenda.css */

/* 1. Reset e Prevenção de balanço horizontal */
html,
body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* 2. Scrollbar das datas (Esconder) */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 3. Comportamento base do Card de Data */
.date-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.date-card:active {
    transform: scale(0.95);
}

/* 4. Estado ATIVO (Selecionado) */
.active-date {
    border-color: #FACC15 !important; /* yellow-500 */
    background-color: #FACC15 !important;
    color: #000000 !important;
    box-shadow: 0 20px 25px -5px rgba(250, 204, 21, 0.3);
    transform: translateY(-2px);
}

.active-date span {
    color: #000000 !important;
}

/* 5. Estado INATIVO */
.inactive-date {
    border-color: #F3F4F6 !important; /* gray-100 */
    background-color: #FFFFFF !important;
    color: #9CA3AF !important; /* gray-400 */
}

.inactive-date:hover {
    border-color: #FEF08A !important; /* yellow-200 */
    transform: translateY(-1px);
}

/* 6. Ajuste para o container de horários */
#horarios-container {
    transition: opacity 0.3s ease-in-out;
}