/* frontend/assets/css/style.css */
/* Styles globaux DRONE ECOCLEAN CRM */

/* Navigation active */
.nav-link {
  color: #9ca3af;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover {
  background-color: #374151;
  color: #ffffff;
}
.nav-link.active {
  background-color: #2563eb;
  color: #ffffff;
}

/* Scrollbars discrètes */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.2s ease; }

/* Cards */
.card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  padding: 1.25rem;
}
