:root {
  /* Yalla Hadir Branding - Premium Palette */
  --indigo-primary: #1A237E;
  --indigo-light: #303F9F;
  --indigo-dark: #121858;
  --tangerine-secondary: #FF6D00;
  --electric-blue: #00D2FF;
  --emerald-success: #10B981;
  --ruby-danger: #EF4444;

  /* Glassmorphism 2.0 Tokens */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-blur: blur(20px) saturate(180%);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

  /* Luminous Edges */
  --lume-border: 1px solid rgba(255, 255, 255, 0.18);

  /* Animation Tokens */
  --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Outfit', sans-serif;

  /* Light Theme */
  --bg-main: #f0f2f5;
  --sidebar-bg: rgba(255, 255, 255, 0.85);
  --card-bg: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border-subtle: #e2e8f0;
  --panel-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.05);
}

[data-theme='dark'] {
  --bg-main: #020617;
  --sidebar-bg: rgba(15, 23, 42, 0.9);
  --card-bg: #0f172a;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(15, 23, 42, 0.7);
  --glass-border: rgba(255, 255, 255, 0.05);
  --panel-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}

html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-main);
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  margin: 0;
}

/* Luxury Backdrop Effects */
.glow-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 0% 0%, rgba(26, 35, 126, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(255, 109, 0, 0.03) 0%, transparent 50%);
}

[data-theme='dark'] .glow-backdrop {
  background:
    radial-gradient(circle at 20% 20%, rgba(26, 35, 126, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 109, 0, 0.08) 0%, transparent 40%);
}

/* Sidebar - Glassmorphism 2.0 */
.sidebar {
  width: 280px;
  background: var(--sidebar-bg);
  backdrop-filter: var(--glass-blur);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  z-index: 1000;
  transition: var(--transition-premium);
  position: relative;
}

.sidebar.collapsed {
  width: 88px;
  padding: 2rem 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--indigo-primary);
  margin-bottom: 3rem;
  transition: var(--transition-premium);
}

[data-theme='dark'] .logo {
  color: #fff;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--indigo-primary), var(--indigo-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 16px rgba(26, 35, 126, 0.2);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--text-muted);
  border-radius: 18px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: var(--transition-premium);
}

.nav-link:hover {
  background: rgba(26, 35, 126, 0.05);
  color: var(--indigo-primary);
  transform: translateX(8px);
}

.nav-link.active {
  background: var(--indigo-primary);
  color: white;
  box-shadow: 0 12px 24px -6px rgba(26, 35, 126, 0.3);
}

/* Luminous Stat Cards */
.stats-horizon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.glass-stat-card {
  background: var(--card-bg);
  padding: 1.5rem;
  /* Reduced for dashboard elegance */
  border-radius: 30px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--panel-shadow);
  transition: var(--transition-premium);
  position: relative;
  overflow: hidden;
}

.glass-stat-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--indigo-primary);
}

/* AI Insight Highlight */
.ai-insight-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--indigo-dark), var(--indigo-primary));
  color: white;
  border: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.ai-icon-pulse {
  position: relative;
  width: 64px;
  height: 64px;
}

.ai-icon-pulse::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--electric-blue);
  border-radius: 50%;
  filter: blur(20px);
  animation: pulseAI 3s infinite;
}

@keyframes pulseAI {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }

  100% {
    opacity: 0.3;
    transform: scale(1);
  }
}

.sidebar.collapsed .collapse-btn {
  transform: rotate(180deg);
  right: -12px;
  /* Keep it on the edge even when collapsed */
}

.sidebar.collapsed .nav-link span,
.sidebar.collapsed .nav-label,
.sidebar.collapsed .profile-text,
.sidebar.collapsed .logo span {
  display: none;
}

.sidebar.collapsed .nav-link {
  justify-content: center;
  padding: 0.75rem 0;
}

/* Main Content Area - Scroll Fix */
.main-content {
  flex-grow: 1;
  padding: 1.5rem 2.5rem;
  overflow-y: auto;
  height: 100vh;
  scroll-behavior: smooth;
  background: var(--bg-main);
  z-index: 1;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: sticky;
  top: -1.5rem;
  /* Match parent padding to sit flush */
  background: var(--bg-main);
  z-index: 500;
  padding: 1.5rem 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.top-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  opacity: 0;
}

/* Add shadow and border when scrolling (simulated by sticky behavior) */
.page-title {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.15rem;
}

.current-date {
  color: var(--text-muted);
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.search-wrapper {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  padding: 0.85rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  width: 350px;
  box-shadow: var(--panel-shadow);
}

.search-wrapper input {
  background: none;
  border: none;
  color: var(--text-main);
  margin: 0 1rem;
  width: 100%;
  outline: none;
  font-weight: 500;
}

.search-wrapper kbd {
  background: var(--bg-main);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.action-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: flex-end;
}

.nav-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--panel-shadow);
  border-color: var(--indigo-primary);
}

.ping {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 10px;
  height: 10px;
  background: var(--tangerine-secondary);
  border-radius: 50%;
  border: 2px solid var(--card-bg);
}

/* Glass Stat Cards */
.stats-horizon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.glass-stat-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  padding: 2.25rem;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--panel-shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-stat-card:hover {
  transform: translateY(-8px);
}

.glass-stat-card::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 100px;
  height: 100px;
  background: var(--stat-glow);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 0;
}

.stat-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.indigo-glow .stat-icon {
  background: rgba(26, 35, 126, 0.1);
  color: var(--indigo-primary);
}

.tangerine-glow .stat-icon {
  background: rgba(255, 109, 0, 0.1);
  color: var(--tangerine-secondary);
}

.emerald-glow .stat-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.sapphire-glow .stat-icon {
  background: rgba(30, 64, 175, 0.1);
  color: #1e40af;
}

.stat-percent {
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
}

.stat-percent.up {
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
}

.stat-percent.down {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

.stat-bottom {
  position: relative;
  z-index: 1;
}

.stat-value {
  font-family: var(--font-accent);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1rem;
}

/* Premium Table */
.premium-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}

.premium-table th {
  text-align: left;
  padding: 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.premium-table td {
  padding: 1.25rem 1.5rem;
  background: var(--card-bg);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.premium-table tr td:first-child {
  border-left: 1px solid var(--border-subtle);
  border-radius: 20px 0 0 20px;
}

.premium-table tr td:last-child {
  border-right: 1px solid var(--border-subtle);
  border-radius: 0 20px 20px 0;
}

.premium-table tr:hover td {
  background: rgba(26, 35, 126, 0.02);
  transform: scale(1.002);
  border-color: var(--indigo-primary);
}

/* Detail Drawer - Slide from Right */
.details-drawer {
  position: fixed;
  top: 0;
  right: -500px;
  /* Hidden by default */
  width: 480px;
  height: 100vh;
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  border-left: 1px solid var(--border-subtle);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: var(--transition-premium);
  display: flex;
  flex-direction: column;
}

.details-drawer.open {
  right: 0;
}

.drawer-header {
  padding: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 2.5rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-subtle);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-dot {
  position: absolute;
  left: -2.35rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--indigo-primary);
  border: 3px solid var(--card-bg);
}

.user-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-cell img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 2px solid #fff;
}

.user-meta {
  display: flex;
  flex-direction: column;
}

.user-meta span {
  font-weight: 700;
  color: var(--text-main);
}

.user-meta small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.service-tag {
  background: rgba(26, 35, 126, 0.05);
  color: var(--indigo-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.85rem;
}

.category-group {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  position: relative;
  border-left: 4px solid var(--indigo-primary);
}

.category-group-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--indigo-primary);
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.05em;
}

.category-group-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag-sub {
  background: #fff;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  padding: 0.4rem 0.85rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.tag-sub:hover {
  border-color: var(--indigo-primary);
  background: rgba(26, 35, 126, 0.02);
}

.provider-ref {
  font-weight: 600;
  color: var(--text-main);
}

.urgency-high {
  color: #ef4444;
  font-weight: 800;
  border-bottom: 2px solid #fee2e2;
}

.urgency-low {
  color: var(--text-muted);
  font-weight: 600;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.status-indicator i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-indicator.active i {
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.status-indicator.pending i {
  background: var(--tangerine-secondary);
}

/* Buttons & Utils */
.btn {
  padding: 0.85rem 1.75rem;
  border-radius: 18px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-accent);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary {
  background: var(--indigo-primary);
  color: #fff;
  box-shadow: 0 10px 20px -5px rgba(26, 35, 126, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(26, 35, 126, 0.4);
}

.btn-outline {
  background: none;
  border: 1.5px solid var(--border-subtle);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--indigo-primary);
  background: rgba(26, 35, 126, 0.02);
}

/* Info Grid & Items */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-item {
  background: var(--bg-main);
  padding: 1rem;
  border-radius: 15px;
  border: 1px solid var(--border-subtle);
}

/* Rank & Status Badges */
.rank-badge {
  background: linear-gradient(135deg, #FFD700, #FFA000);
  color: #000;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-qc {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.8rem;
}

.badge-new {
  background: rgba(0, 210, 255, 0.1);
  color: var(--electric-blue);
}

.badge-risk {
  background: rgba(239, 68, 68, 0.1);
  color: var(--ruby-danger);
}

.badge-blocked {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

/* Chat Bubbles (Detail Drawer) */
.mini-chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  max-width: 85%;
}

.bubble-received {
  background: var(--bg-main);
  align-self: flex-start;
}

.bubble-sent {
  background: var(--indigo-primary);
  color: white;
  align-self: flex-end;
}

/* Management Tokens */
:root {
  --pulse-green: rgba(16, 185, 129, 0.4);
  --pulse-orange: rgba(255, 109, 0, 0.4);
  --danger-red: #ef4444;
}

/* Status Pulse Animation */
@keyframes statusPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 var(--pulse-green);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.status-indicator.online i {
  background: #10b981;
  animation: statusPulse 2s infinite;
}

.status-indicator.offline i {
  background: var(--text-muted);
  opacity: 0.5;
}

/* Advanced Filtering Bar */
.filter-tray {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.filter-select {
  padding: 0.6rem 1rem;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-weight: 600;
  cursor: pointer;
  outline: none;
  font-size: 0.85rem;
}

.filter-select:focus {
  border-color: var(--indigo-primary);
}

/* Detail Page Layouts */
.detail-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2.5rem;
}

.profile-sidebar {
  background: var(--card-bg);
  border-radius: 30px;
  padding: 2.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--panel-shadow);
  text-align: center;
}

.profile-avatar-large {
  width: 140px;
  height: 140px;
  border-radius: 40px;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--indigo-primary);
  padding: 4px;
  background: #fff;
}

.profile-avatar-large img {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: cover;
}

.rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 109, 0, 0.1);
  color: var(--tangerine-secondary);
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.stat-stack {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.stat-row span:first-child {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.stat-row span:last-child {
  font-weight: 700;
}

/* Admin Action Grid */
.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-block {
  background: #fee2e2;
  color: #ef4444;
}

.btn-block:hover {
  background: #ef4444;
  color: #fff;
}

/* Map View in Detail */
.location-card {
  height: 300px;
  margin-top: 2rem;
}

.distance-tag {
  background: var(--indigo-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

[data-theme='dark'] .city-stat strong {
  color: var(--tangerine-secondary);
}

/* Quality Status Badges */
.badge-qc {
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-risk {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-new {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-blocked {
  background: rgba(15, 23, 42, 0.1);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  text-decoration: line-through;
}

@media (max-width: 1400px) {
  .stats-horizon {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

/* Delete Button Styles */
.btn-delete {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-delete:hover {
  background: #ef4444;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Bulk Actions */
.bulk-actions-out {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-bulk-delete {
  background: #ef4444;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: none;
  /* Hidden by default */
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-bulk-delete:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

.checkbox-cell {
  width: 40px;
  text-align: center;
}

.custom-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--blue-primary);
}

.btn-delete {
  background: transparent;
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-delete:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}