/* Global Reset & Base Styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #0a0e17;
  --bg-sidebar: #0f1524;
  --bg-card: rgba(18, 26, 44, 0.65);
  --border-color: rgba(255, 255, 255, 0.08);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #4b5563;
  
  --accent-blue: #3b82f6;
  --accent-blue-glow: rgba(59, 130, 246, 0.3);
  --accent-emerald: #10b981;
  --accent-emerald-glow: rgba(16, 185, 129, 0.3);
  --accent-crimson: #ef4444;
  --accent-crimson-glow: rgba(239, 68, 68, 0.3);
  --accent-amber: #f59e0b;
  --accent-purple: #8b5cf6;
  
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Fira Code', source-code-pro, Menlo, Monaco, Consolas, monospace;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
  
  --transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  height: 100vh;
  overflow: hidden;
  line-height: 1.5;
}

/* App Container Layout */
.app-container {
  display: grid;
  grid-template-columns: 280px 1fr 340px;
  height: 100vh;
}

/* Sidebar Styling */
.sidebar {
  background-color: var(--bg-sidebar);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  justify-content: space-between;
}

.sidebar-header .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.logo-icon {
  color: var(--accent-blue);
  width: 2rem;
  height: 2rem;
  filter: drop-shadow(0 0 8px var(--accent-blue-glow));
}

.logo h1 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-main);
}

.logo span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-item i {
  width: 1.15rem;
  height: 1.15rem;
  transition: var(--transition-smooth);
}

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

.nav-item.active {
  background: rgba(59, 130, 246, 0.12);
  color: var(--text-main);
  box-shadow: inset 3px 0 0 var(--accent-blue);
}

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

.status-badge {
  position: absolute;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.status-badge.todo {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.status-badge.passed {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.progress-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 2rem;
}

.progress-section h3 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.progress-bar-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  height: 8px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-emerald));
  height: 100%;
  border-radius: 6px;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.sidebar-footer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sidebar-footer .chapter-info {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 2px;
}

/* Main Content Styling */
.main-content {
  padding: 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tab-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.tab-header p {
  color: var(--text-muted);
}

.tab-content {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.tab-content.active {
  display: flex;
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.span-full {
  grid-column: span 12;
}

/* Card General Styling */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card p.hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Objectives Card styling */
.scenario-card {
  border-left: 4px solid var(--accent-blue);
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.05), transparent);
}

.scenario-title-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.scenario-title-bar h3 {
  margin-bottom: 0;
  color: var(--accent-blue);
}

.scenario-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.objectives-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  list-style: none;
}

.objectives-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.objectives-list code {
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 4px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.obj-bullet {
  width: 1rem;
  height: 1rem;
  color: var(--text-muted);
  margin-top: 2px;
  flex-shrink: 0;
}

.obj-bullet.passed {
  color: var(--accent-emerald) !important;
  fill: rgba(16, 185, 129, 0.2);
}

/* Forms & Interactive Components */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

select, input[type="text"] {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

select:focus, input[type="text"]:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px var(--accent-blue-glow);
}

/* Button Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--accent-blue);
  color: #fff;
}

.btn-primary:hover {
  background: #2563eb;
  box-shadow: 0 0 12px var(--accent-blue-glow);
}

.btn-success {
  background: var(--accent-emerald);
  color: #fff;
}

.btn-success:hover {
  background: #059669;
  box-shadow: 0 0 12px var(--accent-emerald-glow);
}

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

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

.btn-icon-only {
  padding: 0.5rem;
  border-radius: 6px;
  background: transparent;
  color: var(--text-muted);
}

.btn-icon-only:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

/* Scenario 1 Builder Layout */
.builder-card {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
}

.acl-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.75rem;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.rules-table-container {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  flex-grow: 1;
}

.table-header-row {
  display: grid;
  grid-template-columns: 80px 100px 1fr 120px 80px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
}

.rules-list {
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
}

.rule-item {
  display: grid;
  grid-template-columns: 80px 100px 1fr 120px 80px;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
  transition: var(--transition-smooth);
}

.rule-item:last-child {
  border-bottom: none;
}

.rule-item.dragging {
  opacity: 0.5;
  background: rgba(59, 130, 246, 0.05);
}

.rule-item .badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
}

.rule-item .badge.allow {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.rule-item .badge.deny {
  background: rgba(239, 68, 68, 0.15);
  color: var(--accent-crimson);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.rule-item code {
  font-family: var(--font-mono);
  background: rgba(255, 255, 255, 0.04);
  padding: 1px 4px;
  border-radius: 4px;
}

/* Visualizer Card Layout */
.visualizer-card {
  grid-column: span 6;
  display: flex;
  flex-direction: column;
}

.network-vis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 1rem;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px dashed var(--border-color);
  flex-grow: 1;
}

.network-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  position: relative;
}

.network-node i {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.network-node span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.router-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.router-node i {
  background: var(--accent-blue);
  color: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 15px var(--accent-blue-glow);
  z-index: 10;
}

.firewall-shield {
  position: absolute;
  bottom: -1.5rem;
  background: var(--accent-crimson);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.subnet-boundary {
  border: 1.5px dashed rgba(16, 185, 129, 0.3);
  padding: 1rem;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.boundary-label {
  position: absolute;
  top: -0.65rem;
  font-size: 0.65rem;
  background: var(--bg-primary);
  padding: 0 6px;
  color: var(--accent-emerald);
  font-weight: 600;
}

.sim-actions {
  display: flex;
  gap: 1rem;
}

/* Packet Animation overlay */
.packet {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 6px var(--accent-blue);
  z-index: 5;
}

/* Scenario 2: Windows Properties */
.folder-tree-card {
  grid-column: span 4;
}

.explorer-view {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.85rem;
}

.explorer-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
}

.explorer-item.child {
  margin-left: 1.5rem;
  position: relative;
}

.explorer-item.child::before {
  content: '';
  position: absolute;
  left: -0.75rem;
  top: -0.5rem;
  bottom: 0.75rem;
  width: 1px;
  background: var(--border-color);
}

.explorer-item.child::after {
  content: '';
  position: absolute;
  left: -0.75rem;
  top: 0.75rem;
  width: 0.5rem;
  height: 1px;
  background: var(--border-color);
}

.explorer-item.active {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid var(--accent-blue);
}

.folder-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent-amber);
}

.folder-icon.lock {
  color: var(--accent-blue);
}

.properties-card {
  grid-column: span 8;
  padding: 0;
  overflow: hidden;
  background: #151c2c;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.windows-dialog-header {
  background: #1b253a;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dialog-close {
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--text-muted);
}

.dialog-tabs {
  background: #151c2c;
  display: flex;
  padding-left: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dialog-tab {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--text-muted);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-top: 2px;
}

.dialog-tab.active {
  background: #1f2a40;
  color: var(--text-main);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: -1px;
}

.dialog-content {
  padding: 1.25rem;
  background: #1f2a40;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.inheritance-row {
  background: rgba(0, 0, 0, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.toggle-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
}

.toggle-container input {
  cursor: pointer;
}

.user-groups-box .list-container {
  background: #151c2c;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  height: 100px;
  overflow-y: auto;
  margin-top: 0.35rem;
}

.user-groups-box h4, .permissions-box h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.user-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.user-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

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

.permissions-box {
  margin-top: 0.25rem;
}

.permissions-grid-header {
  display: grid;
  grid-template-columns: 1fr 60px 60px;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.25rem 0.5rem;
  font-weight: 700;
  text-align: center;
}

.permissions-grid-header span:first-child {
  text-align: left;
}

.permissions-list-scroll {
  background: #151c2c;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  height: 160px;
  overflow-y: auto;
}

.perm-row {
  display: grid;
  grid-template-columns: 1fr 60px 60px;
  align-items: center;
  padding: 0.4rem 0.5rem;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
}

.perm-row span {
  text-align: left;
}

.perm-checkbox {
  width: 14px;
  height: 14px;
  cursor: pointer;
  margin: 0 auto;
}

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

/* Scenario 3: Linux */
.files-card {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.linux-files-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.linux-file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.file-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.file-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-blue);
}

.filename {
  font-size: 0.9rem;
  font-weight: 500;
}

.file-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.file-perm-bits {
  color: var(--accent-emerald);
}

.file-owner {
  color: var(--accent-blue);
}

.file-group {
  color: var(--accent-purple);
}

.octal-helper-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: auto;
}

.octal-helper-card h4 {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.octal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.octal-grid div {
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
}

.octal-grid span:last-child {
  color: var(--accent-emerald);
  font-weight: 700;
}

.terminal-card {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: #06090f;
  border: 1px solid #1f293d;
}

.terminal-header {
  background: #111827;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-bottom: 1px solid #1f293d;
}

.terminal-header i {
  width: 0.85rem;
  height: 0.85rem;
}

.terminal-body {
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #38bdf8;
  height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terminal-body .sys-msg {
  color: var(--text-muted);
}

.terminal-body .cmd-output {
  color: #e2e8f0;
  white-space: pre-wrap;
  margin-bottom: 0.5rem;
}

.terminal-body .cmd-error {
  color: var(--accent-crimson);
}

.terminal-body .cmd-success {
  color: var(--accent-emerald);
}

.input-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-emerald);
}

.input-line input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #fff;
  flex-grow: 1;
  padding: 0;
  box-shadow: none !important;
}

.sim-actions-linux {
  padding: 1rem;
  border-top: 1px solid #1f293d;
  background: #090d16;
  display: flex;
  justify-content: flex-end;
}

/* Console Logs Right Panel */
.console-panel {
  background-color: var(--bg-sidebar);
  border-left: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.console-header {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.console-header h2 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  flex-grow: 1;
  margin-left: 0.5rem;
}

.console-header i {
  color: var(--accent-blue);
}

.console-body {
  padding: 1.25rem;
  overflow-y: auto;
  flex-grow: 1;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.15);
}

.console-body p {
  padding: 0.5rem;
  border-radius: 6px;
  border-left: 3px solid transparent;
}

.log-neutral {
  background: rgba(255, 255, 255, 0.02);
  border-left-color: var(--text-muted) !important;
  color: var(--text-muted);
}

.log-success {
  background: rgba(16, 185, 129, 0.05);
  border-left-color: var(--accent-emerald) !important;
  color: var(--accent-emerald);
}

.log-error {
  background: rgba(239, 68, 68, 0.05);
  border-left-color: var(--accent-crimson) !important;
  color: var(--accent-crimson);
}

.log-info {
  background: rgba(59, 130, 246, 0.05);
  border-left-color: var(--accent-blue) !important;
  color: var(--accent-blue);
}

/* Toast System */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1000;
}

.toast {
  background: rgba(18, 26, 44, 0.9);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: toastFadeIn 0.3s ease-out;
}

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

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

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