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

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

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

.client-row { transition: all 0.15s ease-in-out; }
input:focus, select:focus, textarea:focus { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2); }
#paginationControls button { transition: all 0.2s; }

@media (max-width: 768px) {
    .overflow-x-auto { -webkit-overflow-scrolling: touch; }
}

.modal { transition: opacity 0.25s ease; }
body.modal-active { overflow: hidden; }

/* Classe per la gestione forzata della Sidebar */
.sidebar-closed { display: none !important; }