
body {
    background-color: #d3d6da;
}
.agendamento-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Agendamento Info - Desktop e Tablet */
.agendamento-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.agendamento-detalhes {
    flex: 1;
}

.agendamento-acoes {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.dashboard-header {
    gap: 2rem;
}

.dashboard-header h1 {
    margin: 0;
}

.bem-vinda-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .dashboard-header {
        flex-wrap: wrap;
    }

    .bem-vinda-text {
        width: 100%;
        margin-top: 0.5rem;
        white-space: normal;
    }
}

@media (max-width: 576px) {
    .bem-vinda-text {
        font-size: 0.9rem;
    }
}
.horario-card {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
    cursor: pointer;
}
.horario-card:hover {
    border-color: var(--azul-primario);
    transform: translateY(-2px);
}
.horario-card.selected {
    border-color: var(--azul-primario);
    background-color: rgba(11, 79, 161, 0.05);
}
.horario-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.resumo-agendamento {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
}
.login-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Force visibility of content - override global animation opacity that hides .card by default */
#agendamentoContent,
#agendamentoContent *,
#agendamentoContent .card,
#agendamentoContent .card * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Responsive typography for mentorando page */
@media (max-width: 768px) {
    body, .agendamento-container, .login-container {
        font-size: 0.9rem;
    }
    .agendamento-container h1, .agendamento-container h3, .agendamento-container h4 {
        font-size: 1.2rem;
    }
    .horario-data {
        font-size: 1.1rem;
    }
    .horario-card .fw-bold {
        font-size: 1rem;
    }
    .horario-card .fs-5 {
        font-size: 1rem !important;
    }
    .horario-card .text-muted.small {
        font-size: 0.75rem;
    }
    .horario-card .small {
        font-size: 0.8rem;
    }

    /* Botões abaixo da data em tablets */
    .agendamento-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .agendamento-acoes {
        width: 100%;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
}
@media (max-width: 576px) {
    body, .agendamento-container, .login-container {
        font-size: 0.8rem;
    }
    .agendamento-container h1, .agendamento-container h3, .agendamento-container h4 {
        font-size: 1rem;
    }
    .horario-data {
        font-size: 0.9rem;
    }
    .horario-card .fw-bold {
        font-size: 0.9rem;
    }
    .horario-card .fs-5 {
        font-size: 0.9rem !important;
    }
    .horario-card .text-muted.small {
        font-size: 0.7rem;
    }
    .horario-card .small {
        font-size: 0.75rem;
    }
    .horario-card {
        padding: 10px;
    }

    /* Botões abaixo da data em telas pequenas */
    .agendamento-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .agendamento-acoes {
        width: 100%;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
}

/* buttons stack vertically on small screens */
@media (max-width: 576px) {
    .resumo-agendamento .d-flex {
        flex-direction: column !important;
    }
    .resumo-agendamento .d-flex .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .resumo-agendamento .d-flex .btn:last-child {
        margin-bottom: 0;
    }
}
