/* ============================================
   PACIENTES - ClinicaSysExpert
   ============================================ */

/* Estilos específicos da página de pacientes */
#pacientesTable tr {
    cursor: default;
}

#pacientesTable tr:hover td {
    background-color: #f8fafc;
}

/* Animação de loading */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.loading-row td {
    background: linear-gradient(90deg, #f0f2f5 25%, #e8ecf1 50%, #f0f2f5 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
    height: 40px;
}