/* ==========================================================================
   SMARTEX 2.0 - Master Pro Web Platform Stylesheet
   Fixed Container Scrolling (No Body Scroll), Hardware Accelerated Speed (Lag-Free),
   Custom Stylish Scrollbar, Profile Page, API Key Workbench (See All Keys),
   and High-End Card UI/UX.
   ========================================================================== */

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

:root {
  --bg-dark: #06080d;
  --bg-card: rgba(15, 20, 32, 0.95);
  --bg-card-hover: rgba(25, 32, 48, 0.98);
  --bg-input: rgba(8, 11, 18, 0.95);

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-bright: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(99, 102, 241, 0.4);

  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --accent-primary: #6366f1;
  --accent-hover: #4f46e5;
  --accent-glow: rgba(99, 102, 241, 0.35);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #3b82f6;

  --sidebar-w: 220px;
  --header-h: 64px;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* FIXED PAGE BODY & NO WHOLE BODY SCROLL */
html,
body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* MODERN STYLISH CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.25);
}

::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.45);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.8);
}

/* LIGHTWEIGHT HIGH-SPEED AMBIENT BACKGROUND */
.ambient-glow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(168, 85, 247, 0.1) 0%, transparent 40%);
}

#app {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Header Navbar (Fixed Top) */
.app-header {
  height: var(--header-h);
  flex-shrink: 0;
  background: rgba(10, 14, 23, 0.95);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.75rem;
  position: relative;
  z-index: 50;
}

.brand-title {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff 40%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-primary);
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  padding: 2px 7px;
  border-radius: 6px;
}

/* Auth Container */
.auth-container {
  height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.auth-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-glass);
}

.auth-tab-btn {
  flex: 1;
  padding: 0.6rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border: none;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab-btn.active {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 2px 10px var(--accent-glow);
}

/* Dashboard Workspace Layout (Fixed Workspace, Scrolling Viewport) */
.dashboard-workspace {
  flex: 1;
  display: flex;
  height: calc(100vh - var(--header-h));
  overflow: hidden;
}

.sidebar-nav {
  width: var(--sidebar-w);
  height: 100%;
  overflow-y: auto;
  flex-shrink: 0;
  background: rgba(10, 14, 23, 0.95);
  border-right: 1px solid var(--border-glass);
  padding: 1.25rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.15s ease;
  cursor: pointer;
}

.sidebar-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-link.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.22), rgba(168, 85, 247, 0.15));
  border: 1px solid var(--border-accent);
}

.sidebar-link i {
  font-size: 1.05rem;
  width: 20px;
  text-align: center;
}

/* Viewport (Only Container Scrolls) */
.content-viewport {
  flex: 1;
  height: 100%;
  overflow-y: auto;
  padding: 1.75rem 2rem;
  transform: translateZ(0);
}

/* Hero Section & Metrics */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 3px 10px;
  border-radius: 50px;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.15s ease;
}

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

.feature-box {
  padding: 1.25rem;
  transition: border-color 0.15s ease;
}

.feature-box:hover {
  border-color: var(--border-glass-bright);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.feature-box h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Buttons & UI Controls */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border-glass-bright);
  color: var(--text-primary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-pill-blue {
  background: #2563eb;
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
}

.btn-icon {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-icon:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Glass Panels */
.glass-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* CARDS (No Raw Links Displayed) */
.compact-card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1rem;
}

.compact-card {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.15rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: all 0.15s ease;
}

.compact-card:hover {
  border-color: var(--accent-primary);
  background: var(--bg-card-hover);
  transform: translateX(3px);
}

.compact-card-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.compact-card-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
}

.icon-css {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.icon-js {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.icon-html {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.icon-web {
  background: rgba(168, 85, 247, 0.15);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.compact-card-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.compact-card-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-glass);
}

.compact-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* PROFILE PAGE STYLING */
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 650px;
  margin: 0 auto;
}

.profile-field-item {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 1rem;
}

.profile-field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-field-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.profile-field-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 4px;
}

.profile-edit-form {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
}

/* API KEY PANEL (Compact See All Keys) */
.apikeys-panel-box {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.apikey-card {
  background: rgba(8, 12, 20, 0.95);
  border: 1px solid var(--border-glass-bright);
  border-radius: 12px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.apikey-token-box {
  background: #000;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #a5b4fc;
  border: 1px solid var(--border-glass);
  word-break: break-all;
}

.apikey-btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* DROPZONE MODAL DESIGN */
.dropzone-modal-box {
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  color: #0f172a;
  border-radius: 20px;
  padding: 1.75rem;
  position: relative;
}

.dropzone-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #64748b;
  cursor: pointer;
}

.dropzone-domain-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.dropzone-domain-group {
  display: flex;
  align-items: center;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
}

.dropzone-domain-input {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: none;
  outline: none;
  font-size: 0.9rem;
  color: #0f172a;
}

.dropzone-domain-suffix {
  background: #f1f5f9;
  color: #2563eb;
  padding: 0.65rem 0.85rem;
  font-weight: 600;
  font-size: 0.88rem;
  border-left: 1px solid #cbd5e1;
}

.dropzone-tabs {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 1.25rem;
}

.dropzone-tab {
  padding: 0.4rem 0.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #64748b;
  cursor: pointer;
  position: relative;
}

.dropzone-tab.active {
  color: #2563eb;
}

.dropzone-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: #2563eb;
}

.dashed-drop-area {
  border: 2px dashed #3b82f6;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.03);
  padding: 2rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drop-cloud-icon {
  font-size: 3rem;
  color: #93c5fd;
  margin-bottom: 0.75rem;
}

.drop-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.drop-or {
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0.75rem 0;
}

.drop-btn-row {
  display: flex;
  gap: 10px;
}

/* Templates Grid */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
}

.template-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.85rem;
  text-align: center;
  cursor: pointer;
  background: #f8fafc;
}

.template-card:hover {
  border-color: #2563eb;
  background: #eff6ff;
}

.template-icon {
  font-size: 1.5rem;
  color: #2563eb;
  margin-bottom: 0.4rem;
}

.template-title {
  font-weight: 700;
  font-size: 0.85rem;
  color: #0f172a;
}

/* AI MODELS CATALOGUE GRID */
.ai-models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

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

.ai-model-card:hover {
  border-color: var(--accent-primary);
}

.ai-model-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.ai-model-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Album & Media Gallery Grid */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.album-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  cursor: pointer;
}

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

.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.image-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.image-thumb-box {
  height: 140px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.image-card-footer {
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cx-url-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 2px 6px;
  border-radius: 4px;
}

/* MONACO IDE VIEW */
.ide-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #0b0e14;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass-bright);
  overflow: hidden;
}

.ide-action-bar {
  height: 44px;
  background: #111622;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.ide-project-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.ide-active-file-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent-primary);
  background: rgba(99, 102, 241, 0.15);
  padding: 2px 7px;
  border-radius: 4px;
}

.btn-ide-tool {
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  border-radius: 6px;
  cursor: pointer;
}

.ide-body-split {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.ide-tree-panel {
  width: 230px;
  background: #111622;
  border-right: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
}

.ide-tree-header {
  height: 36px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-glass);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.file-item {
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.file-item.active {
  background: var(--accent-primary);
  color: #fff;
}

.ide-main-editor {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ide-tab-bar {
  height: 36px;
  background: #0e121b;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
}

.tab-item {
  height: 100%;
  padding: 0 14px;
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: #090c12;
  border-right: 1px solid var(--border-glass);
  cursor: pointer;
}

.tab-item.active {
  background: #111622;
  color: #fff;
  border-top: 2px solid var(--accent-primary);
}

.ide-split-container {
  flex: 1;
  display: flex;
  overflow: hidden;
}

#editor-instance {
  flex: 1;
  height: 100%;
}

.preview-container {
  flex: 1;
  background: #fff;
  border-left: 1px solid var(--border-glass);
}

.preview-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.ide-status-bar {
  height: 26px;
  background: #090c12;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Modals & Toast */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.82);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
}

#toast-container {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  padding: 0.75rem 1.15rem;
  background: rgba(15, 20, 32, 0.96);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

.toast-info {
  border-left: 4px solid var(--info);
}