/* ==============================
   AGENDA PREMIUM - CLÍNICA LUXO
   Instituto Márcia Fu Saúde
================================ */

body {
    background: linear-gradient(135deg, #f4f6f9, #e9ecf2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* CARD PRINCIPAL */
.card {
    border-radius: 15px;
    border: none;
}

.card.shadow {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
}

/* TÍTULOS */
h2 {
    font-weight: 600;
    color: #2c3e50;
}

/* BOTÕES HORÁRIOS */
#horarios button {
    min-width: 120px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

#horarios button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* INPUTS */
.form-control {
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #dfe3e8;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
    border-color: #28a745;
}

/* BOTÕES */
.btn-primary {
    background: linear-gradient(45deg, #1d5edc, #2563eb);
    border: none;
    border-radius: 10px;
    font-weight: 600;
}

.btn-success {
    background: linear-gradient(45deg, #1e7e34, #28a745);
    border: none;
    border-radius: 10px;
    font-weight: 600;
}

.btn-danger {
    border-radius: 8px;
}

/* MODAL PREMIUM */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: none;
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    padding: 25px;
}

/* DASHBOARD ADMIN */
.table {
    border-radius: 10px;
    overflow: hidden;
}

.table thead {
    background-color: #2c3e50;
    color: white;
}

.card h6 {
    font-size: 14px;
    color: #7f8c8d;
}

.card h3 {
    font-weight: 700;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    #horarios button {
        width: 100%;
        margin-bottom: 8px;
    }
}