@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Toko Aulia Brand Color Palette */
  --primary-color: #ea580c;
  --primary-hover: #c2410c;
  --primary-gradient: linear-gradient(135deg, #e11d48 0%, #ea580c 55%, #f97316 100%);
  --secondary-color: #f97316;
  --accent-color: #fb923c;
  --dark-blue-deep: #0f172a;
  --dark-blue-light: #1e293b;
  --sidebar-gradient: linear-gradient(180deg, #140805 0%, #220e08 40%, #160805 100%);
  --navbar-gradient: linear-gradient(90deg, #140805 0%, #1c0c08 50%, #26110a 100%);
  --body-bg: #f8fafc;
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --card-radius: 14px;
  --font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Global Reset & Typography */
body {
  background-color: var(--body-bg) !important;
  font-family: var(--font-family) !important;
  color: #334155 !important;
}

.content-wrapper {
  background-color: var(--body-bg) !important;
}

/* Navbar */
.main-header.navbar {
  background: var(--navbar-gradient) !important;
  border-bottom: 1px solid rgba(234, 88, 12, 0.15) !important;
}

.main-header.navbar .nav-link {
  color: #fed7aa !important;
  transition: color 0.2s ease;
}

.main-header.navbar .nav-link:hover {
  color: #ffffff !important;
}

/* Sidebar Styling - Deep Warm Charcoal / Dark Burgundy */
.main-sidebar {
  background: var(--sidebar-gradient) !important;
  border-right: 1px solid rgba(234, 88, 12, 0.15) !important;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3) !important;
}

.brand-link {
  background: linear-gradient(90deg, rgba(38, 17, 10, 0.8) 0%, rgba(22, 8, 5, 0.9) 100%) !important;
  border-bottom: 1px solid rgba(234, 88, 12, 0.2) !important;
  color: #ffffff !important;
}

.brand-text {
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}

/* Sidebar user panel */
.main-sidebar .user-panel {
  border-bottom: 1px solid rgba(234, 88, 12, 0.15) !important;
}

/* Sidebar menu items */
.nav-sidebar .nav-item > .nav-link,
.nav-sidebar .nav-item > .nav-link i,
.nav-sidebar .nav-item > .nav-link p {
  color: #f1f5f9 !important; /* bright white */
  font-weight: 600 !important; /* bold */
}

.nav-sidebar .nav-item > .nav-link {
  border-radius: 9px !important;
  margin: 4px 10px !important;
  padding: 8px 12px !important;
  transition: all 0.2s ease-in-out;
}

.nav-sidebar .nav-item > .nav-link:hover {
  background-color: rgba(234, 88, 12, 0.15) !important;
  color: #ffffff !important;
  transform: translateX(3px);
}

.nav-sidebar .nav-item > .nav-link:hover i {
  color: #fb923c !important;
}

/* Active links in sidebar */
.nav-sidebar .nav-item > .nav-link.active,
.nav-sidebar .nav-item > .nav-link.active i,
.nav-sidebar .nav-item > .nav-link.active p {
  color: #ffffff !important;
}

.nav-sidebar .nav-item > .nav-link.active {
  background: linear-gradient(90deg, #e11d48 0%, #ea580c 100%) !important;
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.5) !important;
  font-weight: 700 !important;
}

.nav-treeview > .nav-item > .nav-link,
.nav-treeview > .nav-item > .nav-link i,
.nav-treeview > .nav-item > .nav-link p {
  color: #fed7aa !important; /* soft warm amber for sub-menu */
  font-weight: 500;
}

.nav-treeview > .nav-item > .nav-link:hover {
  background: rgba(234, 88, 12, 0.12) !important;
  color: #ffffff !important;
}

.nav-treeview > .nav-item > .nav-link.active,
.nav-treeview > .nav-item > .nav-link.active i,
.nav-treeview > .nav-item > .nav-link.active p {
  color: #ffffff !important;
}

.nav-treeview > .nav-item > .nav-link.active {
  background: rgba(234, 88, 12, 0.25) !important;
  border-left: 3px solid #ea580c !important;
  box-shadow: none !important;
}

/* Cards Layout Upgrade */
.card {
  border-radius: var(--card-radius) !important;
  box-shadow: var(--card-shadow) !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #ffffff;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02) !important;
}

.card-header {
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
  padding: 14px 20px !important;
}

.card-title {
  font-weight: 600 !important;
  color: var(--dark-blue-light) !important;
  font-size: 1.05rem;
}

/* Modern Tables Styling */
.table {
  border-collapse: separate !important;
  border-spacing: 0 !important;
  width: 100% !important;
}

.table thead th {
  background-color: #f8fafc !important;
  color: #475569 !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  font-size: 0.72rem !important;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #e2e8f0 !important;
  padding: 12px 16px !important;
  border-top: none !important;
}

.table tbody td {
  padding: 12px 16px !important;
  border-bottom: 1px solid #f1f5f9 !important;
  color: #334155 !important;
  vertical-align: middle !important;
  font-size: 0.875rem;
}

.table tbody tr:hover {
  background-color: #f8fafc !important;
}

/* Modern Premium Buttons */
.btn {
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  padding: 8px 16px !important;
  transition: all 0.2s ease-in-out !important;
}

.btn-primary {
  background: linear-gradient(135deg, #e11d48 0%, #ea580c 100%) !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 4px 8px -1px rgba(234, 88, 12, 0.3) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #be123c 0%, #c2410c 100%) !important;
  box-shadow: 0 6px 14px -1px rgba(234, 88, 12, 0.45) !important;
  transform: translateY(-1.5px);
  color: #ffffff !important;
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2) !important;
}

.btn-success:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  box-shadow: 0 6px 12px -1px rgba(16, 185, 129, 0.3) !important;
  transform: translateY(-1.5px);
}

.btn-info {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.2) !important;
}

.btn-info:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  box-shadow: 0 6px 12px -1px rgba(14, 165, 233, 0.3) !important;
  transform: translateY(-1.5px);
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.2) !important;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  box-shadow: 0 6px 12px -1px rgba(239, 68, 68, 0.3) !important;
  transform: translateY(-1.5px);
}

.btn-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  border: none !important;
  color: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.2) !important;
}

.btn-warning:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
  box-shadow: 0 6px 12px -1px rgba(245, 158, 11, 0.3) !important;
  transform: translateY(-1.5px);
}

/* Forms & Input Elements */
.form-control, select.form-control {
  border-radius: 8px !important;
  border: 1px solid #cbd5e1 !important;
  padding: 8px 12px !important;
  height: auto !important;
  font-size: 0.875rem !important;
  color: #334155 !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.form-control:focus {
  border-color: #ea580c !important;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15) !important;
}

/* Toko Aulia Brand Login Page */
.login-page {
  background: radial-gradient(circle at 15% 20%, rgba(234, 88, 12, 0.18) 0%, transparent 45%),
              radial-gradient(circle at 85% 80%, rgba(225, 29, 72, 0.16) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 65%),
              linear-gradient(135deg, #090d16 0%, #151624 50%, #0d111b 100%) !important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  width: 440px !important;
  max-width: 95% !important;
}

.login-card-body {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(12px);
  border-radius: 20px !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35), 0 0 35px rgba(234, 88, 12, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  padding: 35px 30px !important;
}

.login-box-msg {
  color: #475569 !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
}

.login-card-body .input-group .form-control {
  border-right: none !important;
}

.login-card-body .input-group-text {
  background-color: transparent !important;
  border-left: none !important;
  border-color: #cbd5e1 !important;
  color: #94a3b8 !important;
  border-radius: 0 8px 8px 0 !important;
}

.login-card-body .form-control:focus + .input-group-append .input-group-text {
  border-color: #ea580c !important;
}

.login-card-body .btn-block {
  background: linear-gradient(135deg, #e11d48 0%, #ea580c 55%, #f97316 100%) !important;
  color: #ffffff !important;
  padding: 11px 16px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  border: none !important;
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.35) !important;
  margin-top: 15px;
  letter-spacing: 0.4px;
}

.login-card-body .btn-block:hover {
  background: linear-gradient(135deg, #be123c 0%, #c2410c 55%, #ea580c 100%) !important;
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.5) !important;
  transform: translateY(-1.5px);
}

/* Footer & Other Adjustments */
.main-footer {
  background-color: #ffffff !important;
  border-top: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  font-size: 0.85rem !important;
  padding: 15px 20px !important;
}

.main-footer strong a {
  color: var(--primary-color) !important;
}

/* Universal Brand Utility Overrides */
.text-primary {
  color: #ea580c !important;
}
.bg-primary {
  background: linear-gradient(135deg, #e11d48, #ea580c) !important;
  color: #ffffff !important;
}
.badge-primary, .badge-brand {
  background: linear-gradient(135deg, #e11d48, #ea580c) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 600 !important;
}
.card-title-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #fff7ed;
  color: #ea580c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid rgba(234, 88, 12, 0.2);
  vertical-align: middle;
  flex-shrink: 0;
}
.dashboard-badge-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(234, 88, 12, 0.2);
  color: #fed7aa;
  border: 1px solid rgba(251, 146, 60, 0.35);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.alert-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fee2e2;
  color: #dc2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ==========================================
   DASHBOARD OVERHAUL CUSTOM CLASSES (MOCKUP)
   ========================================== */
/* ==========================================
   ADVANCED MODERN DASHBOARD UPGRADE
   ========================================== */
.dashboard-welcome-banner {
  background: linear-gradient(135deg, #090f1f 0%, #0f172a 45%, #1e3a8a 100%) !important;
  border-radius: 20px !important;
  color: #ffffff !important;
  padding: 30px 32px !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25) !important;
  margin-bottom: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.dashboard-welcome-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.25) 0%, rgba(234, 88, 12, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.dashboard-welcome-banner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.dashboard-welcome-banner h2 {
  font-weight: 800 !important;
  font-size: 1.85rem !important;
  margin-bottom: 6px !important;
  color: #ffffff !important;
  letter-spacing: -0.02em;
}
.dashboard-welcome-banner p {
  font-size: 0.95rem !important;
  opacity: 0.9 !important;
  margin: 0 !important;
  color: #cbd5e1 !important;
}
.dashboard-welcome-banner .banner-icon {
  position: absolute !important;
  right: 35px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 4rem !important;
  opacity: 0.2 !important;
  color: #f97316 !important;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-dot-anim 2s infinite;
  margin-right: 6px;
  vertical-align: middle;
}
@keyframes pulse-dot-anim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Quick Action Strip */
.quick-action-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.quick-action-pill {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.quick-action-pill:hover {
  background: #ffffff;
  color: #ea580c;
  border-color: #fdba74;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.12);
}
.quick-action-pill i {
  font-size: 0.95rem;
  margin-right: 8px;
}

/* Hero Stat Cards */
.hero-stat-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 22px 20px;
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08);
}
.hero-stat-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}
.hero-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.hero-stat-label {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 4px;
}
.hero-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero-stat-footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  font-size: 0.78rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Store Branch Dual Cards */
.store-branch-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.store-branch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px -4px rgba(0,0,0,0.08);
}
.store-branch-header {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
}
.store-toko1-header {
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 100%);
  border-top: 4px solid #ea580c;
}
.store-sei-header {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  border-top: 4px solid #0284c7;
}
.store-branch-body {
  padding: 20px;
}
.store-net-highlight {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
  border: 1px dashed #cbd5e1;
}
.store-net-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 4px;
}
.store-net-value {
  font-size: 1.85rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}
.store-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.store-mini-metric {
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid #f1f5f9;
}
.store-mini-metric-lbl {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2px;
}
.store-mini-metric-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

/* Contribution Share Bar */
.contribution-bar-wrapper {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 18px 22px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.contribution-progress-track {
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: #e2e8f0;
  display: flex;
}
.contribution-bar-toko1 {
  background: linear-gradient(90deg, #ea580c, #f97316);
  transition: width 0.6s ease;
}
.contribution-bar-sei {
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  transition: width 0.6s ease;
}

/* Inventory Modern Grid */
.inventory-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.inventory-modern-tile {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  text-decoration: none !important;
  color: inherit;
}
.inventory-modern-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  border-color: #cbd5e1;
}
.inventory-tile-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-right: 12px;
  flex-shrink: 0;
}
.inventory-tile-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}
.inventory-tile-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
}

/* User role list */
.user-role-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  background: #f8fafc;
  margin-bottom: 8px;
  border: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}
.user-role-card:hover {
  background: #f1f5f9;
}
.user-role-left {
  display: flex;
  align-items: center;
}
.user-role-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ffffff;
  margin-right: 12px;
}

/* Cashier Ranking Medals */
.rank-badge-1 {
  background: linear-gradient(135deg, #fef08a 0%, #facc15 100%);
  color: #854d0e;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(234, 179, 8, 0.4);
}
.rank-badge-2 {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  color: #334155;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Inventory Info Grid */
.inventory-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
}
.inventory-item {
  background-color: #f8fafc !important;
  border-radius: 10px !important;
  padding: 20px 16px !important;
  text-align: center !important;
  border: 1px solid #e2e8f0 !important;
}
.inventory-val {
  font-size: 1.65rem !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
}
.inventory-lbl {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  color: #64748b !important;
}
.val-blue { color: #ea580c !important; }
.val-purple { color: #8b5cf6 !important; }
.val-green { color: #10b981 !important; }
.val-teal { color: #0d9488 !important; }

/* User List Info */
.user-list-item {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #f1f5f9 !important;
}
.user-list-item:last-child {
  border-bottom: none !important;
}
.user-info-left {
  display: flex !important;
  align-items: center !important;
}
.user-circle {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  display: flex !align-items: center !important;
  justify-content: center !important;
  font-weight: bold !important;
  font-size: 0.85rem !important;
  margin-right: 12px !important;
}
.circle-blue { background-color: #ea580c !important; }
.circle-green { background-color: #10b981 !important; }
.circle-orange { background-color: #f97316 !important; }
.circle-lightblue { background-color: #06b6d4 !important; }
.circle-red { background-color: #ef4444 !important; }

.user-name-lbl {
  font-weight: 600 !important;
  color: #334155 !important;
  font-size: 0.875rem !important;
}
.user-count-val {
  font-weight: 700 !important;
  color: #ea580c !important;
  font-size: 1rem !important;
}
