/* styles.css */

.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9; 
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Ocultar elementos durante la impresión (generación del PDF) */
@media print {
    .no-print {
        display: none !important;
    }
    body {
        background-color: white !important;
    }
    .shadow-sm, .shadow-lg, .shadow-xl {
        box-shadow: none !important;
    }
}

/* Badge de estados */
.badge-mora {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-aldia {
    background-color: #dcfce3;
    color: #166534;
}
