/* Tailwind base styles */
@import 'https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css';

:root {
  --primary-50: #EEF2FF;
  --primary-100: #E0E7FF;
  --primary-200: #C7D2FE;
  --primary-300: #A5B4FC;
  --primary-400: #818CF8;
  --primary-500: #6366F1;
  --primary-600: #4F46E5;
  --primary-700: #4338CA;
  --primary-800: #3730A3;
  --primary-900: #312E81;
  
  --secondary-50: #ECFDF5;
  --secondary-100: #D1FAE5;
  --secondary-200: #A7F3D0;
  --secondary-300: #6EE7B7;
  --secondary-400: #34D399;
  --secondary-500: #10B981;
  --secondary-600: #059669;
  --secondary-700: #047857;
  --secondary-800: #065F46;
  --secondary-900: #064E3B;
  
  --neutral-50: #F9FAFB;
  --neutral-100: #F3F4F6;
  --neutral-200: #E5E7EB;
  --neutral-300: #D1D5DB;
  --neutral-400: #9CA3AF;
  --neutral-500: #6B7280;
  --neutral-600: #4B5563;
  --neutral-700: #374151;
  --neutral-800: #1F2937;
  --neutral-900: #111827;
  
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;
}

/* Ultra Professional Body Background */
body {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #0f172a 100%),
              radial-gradient(circle at 10% 20%, rgba(129, 140, 248, 0.15) 0%, transparent 25%),
              radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 25%),
              radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 30%);
  background-blend-mode: overlay, screen, lighten, normal;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 45%, rgba(99, 102, 241, 0.08) 50%, transparent 55%),
    linear-gradient(135deg, transparent 45%, rgba(139, 92, 246, 0.08) 50%, transparent 55%),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 15%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 15%);
  background-size: 50px 50px, 50px 50px, 100px 100px, 100px 100px;
  opacity: 0.7;
  z-index: -1;
}

/* Professional Background Class */
.professional-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #0f172a 100%),
              radial-gradient(circle at 10% 20%, rgba(129, 140, 248, 0.15) 0%, transparent 25%),
              radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 25%),
              radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 30%);
  background-blend-mode: overlay, screen, lighten, normal;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

.professional-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(99, 102, 241, 0.05) 50%, transparent 60%),
    linear-gradient(135deg, transparent 40%, rgba(99, 102, 241, 0.05) 50%, transparent 60%);
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: -1;
}

/* Particles Effect */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
  25% { transform: translate(20px, -30px) rotate(90deg); opacity: 0.6; }
  50% { transform: translate(-15px, 25px) rotate(180deg); opacity: 0.4; }
  75% { transform: translate(10px, 35px) rotate(270deg); opacity: 0.7; }
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(45deg, transparent 40%, rgba(99, 102, 241, 0.05) 50%, transparent 60%),
    linear-gradient(135deg, transparent 40%, rgba(99, 102, 241, 0.05) 50%, transparent 60%);
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: -1;
}

/* Buttons - Premium Glass Effect */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: translateY(2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 10px;
}

/* Layout and structure */
.dijicari-app {
  display: flex;
  min-height: 100vh;
  background-color: #f3f4f6;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background-color: white;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  overflow-y: auto;
}

.sidebar-collapsed {
  width: 70px;
}

.sidebar-header {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-600);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sidebar-toggle {
  background: none;
  border: none;
  color: var(--neutral-500);
  cursor: pointer;
  transition: color 0.2s;
}

.sidebar-toggle:hover {
  color: var(--primary-600);
}

.sidebar-nav {
  padding: 1.5rem 0;
}

.nav-section {
  margin-bottom: 1.5rem;
}

.nav-section-title {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--neutral-500);
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: var(--neutral-700);
  text-decoration: none;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  position: relative;
}

.nav-item:hover {
  background-color: var(--primary-50);
  color: var(--primary-700);
}

.nav-item.active {
  background-color: var(--primary-50);
  color: var(--primary-700);
  border-left-color: var(--primary-600);
}

.nav-icon {
  font-size: 1.25rem;
  margin-right: 0.75rem;
  width: 1.5rem;
  text-align: center;
}

.sidebar-collapsed .nav-text {
  display: none;
}

.sidebar-collapsed .sidebar-logo-text {
  display: none;
}

.sidebar-collapsed .nav-section-title {
  text-align: center;
  padding: 0.5rem 0;
}

.sidebar-collapsed .nav-item {
  justify-content: center;
  padding: 0.75rem;
}

.sidebar-collapsed .nav-icon {
  margin-right: 0;
}

/* Main content */
.main-content {
  flex: 1;
  margin-left: 250px;
  transition: margin-left 0.3s;
  padding-top: 1rem;
}

.main-content-expanded {
  margin-left: 70px;
}

/* Header */
.main-header {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-800) 100%);
  color: white;
  padding: 1.5rem 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.01);
}

.main-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

/* Welcome Banner - Ultra Professional */
.welcome-banner {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 50%, rgba(16, 185, 129, 0.15) 100%);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 10px 25px -5px rgba(99, 102, 241, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.welcome-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 20%),
    radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 20%);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.welcome-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.welcome-heading {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #e0e7ff, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-emphasis-color: transparent;
  text-shadow: 0 2px 10px rgba(99, 102, 241, 0.2);
  letter-spacing: -0.5px;
}

.welcome-date {
  opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.welcome-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  animation: float 8s ease-in-out infinite;
}

.floating-element-1 {
  width: 100px;
  height: 100px;
  top: 15%;
  right: 15%;
  animation-delay: 0s;
}

.floating-element-2 {
  width: 70px;
  height: 70px;
  bottom: 25%;
  left: 20%;
  animation-delay: 2.5s;
}

.floating-element-3 {
  width: 50px;
  height: 50px;
  top: 45%;
  left: 30%;
  animation-delay: 5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.15;
  }
  50% {
    transform: translate(15px, 20px) rotate(180deg);
    opacity: 0.3;
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
    opacity: 0.15;
  }
}

/* Glass Card Effects */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.01),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 35px -10px rgba(0, 0, 0, 0.15),
    0 15px 20px -10px rgba(99, 102, 241, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Neon Glow Effects */
.neon-glow {
  position: relative;
}

.neon-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.neon-glow:hover::after {
  opacity: 1;
}

.header-content {
  position: relative;
  z-index: 10;
}

.header-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-subtitle {
  opacity: 0.9;
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Stats Cards */
.stat-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 
    0 10px 25px -5px rgba(0,0,0,0.1), 
    0 8px 10px -6px rgba(0,0,0,0.01),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--secondary-500));
  transition: height 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 20px 35px -10px rgba(0,0,0,0.15), 
    0 10px 15px -5px rgba(0,0,0,0.02),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.stat-card:hover::before {
  height: 6px;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  overflow: hidden;
}

.stat-details {
  position: relative;
  z-index: 2;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-emphasis-color: transparent;
}

.stat-label {
  color: var(--neutral-600);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Quick Actions - Ultra Professional */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.quick-action {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(249, 250, 251, 0.05) 100%);
  border-radius: 16px;
  padding: 1.75rem;
  text-decoration: none;
  color: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 15px 35px -10px rgba(0,0,0,0.25), 
    0 10px 20px -10px rgba(99, 102, 241, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.quick-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(16, 185, 129, 0.1) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.quick-action:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 25px 50px -12px rgba(0,0,0,0.35), 
    0 15px 25px -10px rgba(99, 102, 241, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  color: white;
}

.quick-action:hover::before {
  opacity: 1;
}

.quick-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  color: white;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.quick-action:hover .quick-action-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 25px rgba(99, 102, 241, 0.4);
}

.quick-action-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.quick-action-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* Section Cards - Ultra Professional Glass */
.content-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(249, 250, 251, 0.05) 100%);
  border-radius: 20px;
  box-shadow: 
    0 25px 50px -12px rgba(0,0,0,0.25), 
    0 10px 25px -5px rgba(99, 102, 241, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  height: 100%;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 20%);
  z-index: -1;
}

.content-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    0 35px 60px -15px rgba(0,0,0,0.35), 
    0 15px 30px -10px rgba(99, 102, 241, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.card-header-custom {
  padding: 1.75rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  backdrop-filter: blur(5px);
}

.card-title-custom {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.card-icon-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
  color: white;
  box-shadow: 0 6px 15px rgba(99, 102, 241, 0.3);
}

.card-body-custom {
  padding: 1.75rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Dashboard Cards */
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 992px) {
  .dashboard-cards {
    grid-template-columns: 2fr 1fr;
  }
}

/* Dashboard cards adjustment for mobile */
@media (max-width: 768px) {
  .dashboard-cards {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .content-card {
    margin-bottom: 1rem;
  }
  
  .card-header-custom {
    padding: 1.25rem;
  }
  
  .card-body-custom {
    padding: 1.25rem;
  }
  
  .customer-list-item {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .customer-info-custom {
    width: 100%;
  }
  
  .text-end {
    width: 100%;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* Ensure sidebar is visible on larger screens */
@media (min-width: 769px) {
  .sidebar {
    transform: translateX(0) !important;
  }
  
  /* Dashboard cards adjustment for larger screens */
  .dashboard-cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Customer List - Enhanced Glass Design */
.customer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.customer-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  backdrop-filter: blur(5px);
  margin: 0.5rem 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.customer-list-item:last-child {
  border-bottom: none;
}

.customer-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  transition: width 0.4s ease;
  border-radius: 12px 0 0 12px;
}

.customer-list-item:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: translateX(5px);
}

.customer-list-item:hover::before {
  width: 5px;
}

.customer-info-custom {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.customer-avatar-custom {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.customer-list-item:hover .customer-avatar-custom {
  transform: scale(1.1) rotate(5deg);
}

.customer-meta-custom {
  display: flex;
  flex-direction: column;
}

.customer-name-custom {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: white;
  font-size: 1.1rem;
}

.customer-details-custom {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.empty-state-custom {
  text-align: center;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.empty-icon-custom {
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.5rem;
  text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.empty-title-custom {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.empty-description-custom {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.badge-success-custom, .badge-danger-custom {
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-success-custom {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  color: #10b981;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.badge-danger-custom {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
  color: #ef4444;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

.customer-meta {
  display: flex;
  flex-direction: column;
}

.customer-name {
  font-weight: 600;
  color: var(--neutral-800);
}

.customer-details {
  font-size: 0.875rem;
  color: var(--neutral-500);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3.5rem 1.5rem;
  color: var(--neutral-400);
  position: relative;
  overflow: hidden;
}

.empty-state i {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  opacity: 0.7;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-emphasis-color: transparent;
}

.empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--neutral-700);
  position: relative;
  z-index: 1;
}

.empty-state p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.empty-state::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-50) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  z-index: 0;
}

/* Chart Container */
.chart-container {
  position: relative;
  height: 300px;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar.mobile-open {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .main-content-expanded {
    margin-left: 0;
  }
  
  .mobile-menu-toggle {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 101;
    background: var(--primary-600);
    color: white;
    border: none;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
}
