body {
  font-family: "Inter", sans-serif;
}

.sidebar-item {
  transition: all 0.3s ease;
}

.sidebar-item:hover {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  transform: translateX(5px);
}

.sidebar-item.active {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  color: white !important;
}

.sidebar-item.active i {
  color: white !important;
}

.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile Menu Styles */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
  transform: translateX(0);
}
