/* ==========================================================================
   PACIENTES (APPLE INSPIRED)
   ========================================================================== */

#pacientes h3.fw-bold {
    color: #ffffff;
    letter-spacing: -0.02em;
}

/* Botão novo paciente */
#pacientes .btn-info {
    background: rgba(0, 113, 227, 0.85) !important;
    border: none !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    font-weight: 600;
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

#pacientes .btn-info:hover {
    background: #0071e3 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 113, 227, 0.4) !important;
}

/* Tabela de pacientes */
#tablePacientes thead.table-light th {
    background: rgba(255, 255, 255, 0.04) !important;
    color: rgba(255, 255, 255, 0.5) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-top: none !important;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.9rem 1.25rem;
}

#tablePacientes tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    transition: background 0.2s ease;
}

#tablePacientes tbody tr:last-child {
    border-bottom: none !important;
}

#tablePacientes tbody tr:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

#tablePacientes tbody td {
    color: #d1d5db !important;
    padding: 0.85rem 1.25rem;
    border-bottom: none !important;
    vertical-align: middle;
}

#tablePacientes .badge {
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35em 0.75em;
    letter-spacing: 0.03em;
}

#tablePacientes .btn-sm {
    border-radius: 8px;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 768px) {
    #tablePacientes thead th:nth-child(3),
    #tablePacientes tbody td:nth-child(3) {
        display: none;
    }
}
