/* Atendimento Module CSS */

.atendimento-container {
    padding-bottom: 2rem;
}

.atendimento-card {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.patient-wait-card {
    border-left: 5px solid #f59e0b;
    transition: all 0.2s ease-in-out;
}

.patient-wait-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
}

.btn-finalizar-atendimento {
    background-color: #8b5cf6;
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1.2rem;
    box-shadow: 0 3px 6px rgba(139, 92, 246, 0.3);
    transition: all 0.2s ease;
}

.btn-finalizar-atendimento:hover {
    background-color: #7c3aed;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 5px 8px rgba(139, 92, 246, 0.4);
}
