/* ============================================
   ADMIN UI - Design System Matching Landing
   ============================================ */

/* ----- GLASS EFFECTS ----- */

/* Glass card effect for admin cards */
.admin-glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Sidebar glassmorphism */
.admin-sidebar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(226, 232, 240, 0.8);
}

/* Header with subtle gradient */
.admin-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

/* ----- STAT CARDS ----- */

.stat-card-blue {
  border-left: 4px solid #2563eb;
}

.stat-card-purple {
  border-left: 4px solid #7c3aed;
}

.stat-card-teal {
  border-left: 4px solid #06b6d4;
}

.stat-card-green {
  border-left: 4px solid #22c55e;
}

/* ----- FILTER PILLS ----- */

.admin-filter-pill {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.15s ease;
  cursor: pointer;
}

.admin-filter-pill-active {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
}

.admin-filter-pill-inactive {
  background: rgba(241, 245, 249, 0.8);
  color: #475569;
}

.admin-filter-pill-inactive:hover {
  background: rgba(226, 232, 240, 0.9);
  color: #2563eb;
}

/* ----- SEARCH INPUT ----- */

.admin-search-input {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.625rem 1rem 0.625rem 2.5rem;
  transition: all 0.15s ease;
  width: 100%;
  font-size: 0.875rem;
}

.admin-search-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.admin-search-input::placeholder {
  color: #94a3b8;
}

/* ----- GRADIENT BUTTON ----- */

.btn-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  border: none;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #6d28d9 100%);
}
