/* ==========================================================================
   GLOBAL MIDWEST CHICAGO - WEB PANEL & DASHBOARD STYLESHEET
   Design Theme: Ultra Modern Dark Glassmorphism
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #090c15;
  --bg-card: rgba(18, 24, 38, 0.7);
  --bg-glass: rgba(22, 30, 48, 0.5);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 210, 255, 0.3);
  
  --primary: #00d2ff;
  --primary-glow: rgba(0, 210, 255, 0.25);
  --accent-purple: #7000ff;
  --accent-purple-glow: rgba(112, 0, 255, 0.25);
  --success: #00ff87;
  --success-glow: rgba(0, 255, 135, 0.25);
  --warning: #ffaa00;
  --danger: #ff3b5c;
  --gold: #ffd700;

  --text-main: #f0f4f8;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Reset & Basic Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

code, pre {
  font-family: 'JetBrains Mono', monospace;
}

/* Ambient Glowing Background Orbs */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-1 {
  width: 450px;
  height: 450px;
  background: var(--primary);
  top: -100px;
  left: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--accent-purple);
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--success);
  top: 40%;
  left: 35%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 80px) scale(0.9); }
}

/* App Layout Grid */
.app-layout {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
}

/* Sidebar Styling */
.sidebar {
  width: 280px;
  background: rgba(13, 17, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.sidebar-header {
  padding: 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid var(--border-glass);
}

.sidebar-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 0 20px var(--primary-glow);
}

.sidebar-brand h2 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff;
}

.sidebar-brand span {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-menu {
  padding: 1.5rem 1rem;
  flex: 1;
  overflow-y: auto;
}

.menu-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 1px;
  padding: 0.5rem 0.75rem;
  margin-top: 0.5rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 0.35rem;
  position: relative;
}

.nav-item i {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  transition: var(--transition);
}

.nav-item:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.nav-item.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 210, 255, 0.15), rgba(112, 0, 255, 0.05));
  border-left: 3px solid var(--primary);
  font-weight: 600;
}

.nav-item.active i {
  color: var(--primary);
}

.nav-item .badge {
  margin-left: auto;
}

.sidebar-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.2);
}

.system-status-mini {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
}

.dot.online {
  background: var(--success);
  box-shadow: 0 0 10px var(--success-glow);
}

.system-status-mini small {
  color: var(--text-dim);
  font-size: 0.75rem;
}

/* Main Wrapper Layout */
.main-wrapper {
  margin-left: 280px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Topbar Header */
.topbar {
  padding: 1.5rem 2rem;
  background: rgba(13, 17, 26, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 9;
}

.topbar-left h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.topbar-left p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.connection-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pill {
  font-size: 0.78rem;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
}

.pill i {
  font-size: 0.85rem;
}

.pill-discord i { color: #5865F2; }
.pill-fivem i { color: var(--success); }
.pill-db i { color: var(--gold); }

/* Views Container */
.content-container {
  padding: 2rem;
  flex: 1;
}

.page-view {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.page-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Button UI Components */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #0099ff);
  color: #000;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-success {
  background: linear-gradient(135deg, var(--success), #00b359);
  color: #000;
}

.btn-warning {
  background: linear-gradient(135deg, var(--warning), #e69500);
  color: #000;
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger), #d62845);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-glow);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-success { background: rgba(0, 255, 135, 0.15); color: var(--success); border: 1px solid rgba(0, 255, 135, 0.3); }
.badge-warning { background: rgba(255, 170, 0, 0.15); color: var(--warning); border: 1px solid rgba(255, 170, 0, 0.3); }
.badge-danger { background: rgba(255, 59, 92, 0.15); color: var(--danger); border: 1px solid rgba(255, 59, 92, 0.3); }
.badge-primary { background: rgba(0, 210, 255, 0.15); color: var(--primary); border: 1px solid rgba(0, 210, 255, 0.3); }

/* Hero Card Box */
.hero-card {
  background: linear-gradient(135deg, rgba(22, 30, 48, 0.8), rgba(15, 20, 32, 0.9));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 210, 255, 0.1);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: 30px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.bot-status-card {
  background: rgba(13, 17, 26, 0.8);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.bot-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 0 25px var(--primary-glow);
}

.bot-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.bot-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.bot-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

.bot-metrics strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
}

.bot-metrics small {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* Stats Cards Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  backdrop-filter: blur(15px);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.stat-icon.blue { background: rgba(0, 210, 255, 0.15); color: var(--primary); }
.stat-icon.green { background: rgba(0, 255, 135, 0.15); color: var(--success); }
.stat-icon.gold { background: rgba(255, 215, 0, 0.15); color: var(--gold); }
.stat-icon.purple { background: rgba(112, 0, 255, 0.15); color: var(--accent-purple); }

.stat-data span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-data h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0.15rem 0;
}

.stat-data small {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Section Title */
.section-title {
  margin-bottom: 1.25rem;
}

.section-title h3 {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.feature-icon-wrapper {
  font-size: 1.6rem;
}

.feature-tag {
  font-size: 0.72rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

.feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.feature-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--success);
  font-weight: 600;
}

/* Panel Box Container */
.panel-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow);
}

.box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.box-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.box-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Custom Data Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.custom-table th {
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-glass);
  background: rgba(0, 0, 0, 0.2);
}

.custom-table td {
  padding: 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border-glass);
  vertical-align: middle;
}

.custom-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.action-btns {
  display: flex;
  gap: 0.4rem;
  justify-content: flex-end;
}

/* Form Controls */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(13, 17, 26, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.form-control.color-picker {
  height: 45px;
  padding: 4px;
  cursor: pointer;
}

.search-bar {
  position: relative;
  width: 300px;
}

.search-bar i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
}

.search-bar input {
  padding-left: 2.5rem;
}

.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.margin-top {
  margin-top: 1.5rem;
}

.gap-sm {
  gap: 0.75rem;
}

/* Discord Embed Previewer Mockup */
.discord-preview-wrapper {
  background: #313338;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.discord-msg {
  display: flex;
  gap: 1rem;
}

.discord-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #5865F2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.discord-msg-content {
  flex: 1;
}

.discord-author {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.discord-author .bot-name {
  font-weight: 700;
  color: #f2f3f5;
  font-size: 0.95rem;
}

.discord-author .bot-badge {
  background: #5865F2;
  color: #fff;
  font-size: 0.65rem;
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 700;
}

.discord-author .timestamp {
  font-size: 0.75rem;
  color: #949ba4;
}

.discord-embed {
  background: #2b2d31;
  border-radius: 4px;
  display: flex;
  max-width: 520px;
  overflow: hidden;
}

.embed-color-bar {
  width: 4px;
  background: var(--primary);
  flex-shrink: 0;
}

.embed-content {
  padding: 0.85rem 1rem;
  flex: 1;
}

.embed-author {
  font-size: 0.78rem;
  color: #dbdee1;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.embed-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.embed-desc {
  font-size: 0.85rem;
  color: #dbdee1;
  line-height: 1.4;
  white-space: pre-wrap;
}

.embed-image {
  margin-top: 0.85rem;
  border-radius: 4px;
  overflow: hidden;
  max-height: 250px;
}

.embed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.embed-footer {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  color: #949ba4;
}

/* Commands Catalog Grid */
.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.cmd-card {
  background: rgba(13, 17, 26, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  transition: var(--transition);
}

.cmd-card:hover {
  border-color: var(--primary);
}

.cmd-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.cmd-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Diagnostics Cards */
.diagnostics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.diag-card {
  background: rgba(13, 17, 26, 0.6);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.diag-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.diag-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.diag-status {
  font-size: 0.8rem;
  font-weight: 700;
  display: block;
}

.diag-info small {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #0f1523;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  width: 90%;
  max-width: 520px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-content.modal-lg {
  max-width: 750px;
}

.modal-backdrop.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.close-modal {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.close-modal:hover { color: #fff; }

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(18, 24, 38, 0.95);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideInRight 0.3s ease;
}

.toast.success { border-left: 4px solid var(--success); }
.toast.success i { color: var(--success); }

.toast.error { border-left: 4px solid var(--danger); }
.toast.error i { color: var(--danger); }

.toast.warning { border-left: 4px solid var(--warning); }
.toast.warning i { color: var(--warning); }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Utility Text Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

/* Responsive adjustments */
@media (max-width: 1024px) {
  .sidebar { width: 80px; }
  .sidebar-brand, .menu-label, .nav-item span, .sidebar-footer { display: none; }
  .main-wrapper { margin-left: 80px; }
  .hero-card { grid-template-columns: 1fr; }
  .grid-2-col { grid-template-columns: 1fr; }
}
