:root {
  --bg-main: #0b0f19;
  --bg-sidebar: #070a10;
  --bg-card: #121826;
  --bg-card-hover: #1a2236;
  --border-color: #1e293b;
  --border-light: #2d3748;
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-glow: rgba(99, 102, 241, 0.25);
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

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

/* Layout */
.app-layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background-color: var(--bg-sidebar);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.brand-icon svg {
  width: 22px;
  height: 22px;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.badge-ai {
  font-size: 0.65rem;
  font-weight: 800;
  background: #6366f1;
  color: white;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}

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

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

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: left;
}

.nav-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-item:hover {
  background-color: var(--bg-card);
  color: var(--text-main);
}

.nav-item.active {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.3);
  color: #818cf8;
}

.nav-badge {
  margin-left: auto;
  font-size: 0.75rem;
  background: #312e81;
  color: #c7d2fe;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 600;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  margin-left: auto;
  box-shadow: 0 0 8px var(--success);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.sidebar-status-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.85rem;
  margin-top: auto;
}

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

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

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

.status-meta {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 0.35rem;
  font-family: var(--font-mono);
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border-color);
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(12px);
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-description {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.topbar-actions {
  display: flex;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px var(--primary-glow);
}

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

.btn-secondary {
  background: var(--bg-card);
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  margin-top: 1rem;
}

.btn-outline:hover {
  background: rgba(99, 102, 241, 0.1);
}

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

/* Tabs */
.tab-pane {
  display: none;
  padding: 2rem 2.5rem;
  flex: 1;
}

.tab-pane.active {
  display: block;
}

/* INBOX VIEW */
.inbox-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-card);
  padding: 4px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.4rem 0.9rem;
  font-size: 0.825rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

.filter-btn.active {
  background: rgba(99, 102, 241, 0.18);
  color: #a5b4fc;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  width: 320px;
}

.search-box svg {
  color: var(--text-dim);
}

.search-box input {
  background: transparent;
  border: none;
  color: var(--text-main);
  outline: none;
  font-size: 0.85rem;
  width: 100%;
}

.inbox-split {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 1.5rem;
  min-height: 550px;
}

.voicemail-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
  max-height: calc(100vh - 240px);
  padding-right: 0.5rem;
}

.vm-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.vm-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-1px);
}

.vm-item.active {
  border-color: var(--primary);
  background: rgba(99, 102, 241, 0.08);
}

.vm-item.unread::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

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

.vm-caller {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}

.vm-time {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.vm-purpose {
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 0.4rem;
}

.vm-snippet {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vm-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

/* Urgency Badges */
.badge-urgency {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}

.badge-urgency.Urgent {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.badge-urgency.High {
  background: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-urgency.Medium {
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.badge-urgency.Low {
  background: rgba(148, 163, 184, 0.2);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.badge-channel {
  font-size: 0.7rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Detail Card */
.voicemail-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 240px);
  overflow-y: auto;
}

.detail-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-dim);
  text-align: center;
  gap: 1rem;
}

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  color: var(--text-dim);
  text-align: center;
  gap: 0.75rem;
}

.empty-state h3 {
  color: var(--text-main);
  font-size: 1.1rem;
}

.detail-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.detail-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.detail-actions {
  display: flex;
  gap: 0.5rem;
}

.detail-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.detail-section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.detail-summary-box {
  background: rgba(99, 102, 241, 0.06);
  border-left: 3px solid var(--primary);
  padding: 0.85rem 1rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.detail-actions-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border: 1px solid var(--border-color);
}

.transcript-dialog {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bubble {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.45;
}

.bubble.agent {
  align-self: flex-start;
  background: #1e293b;
  color: #f1f5f9;
  border-bottom-left-radius: 4px;
}

.bubble.caller {
  align-self: flex-end;
  background: var(--primary);
  color: white;
  border-bottom-right-radius: 4px;
}

.bubble-sender {
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  opacity: 0.75;
}

/* SIMULATOR SCREEN */
.simulator-container {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.phone-frame {
  background: #090d16;
  border: 8px solid #1e293b;
  border-radius: 36px;
  padding: 1.25rem;
  min-height: 580px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(99, 102, 241, 0.15);
  display: flex;
  flex-direction: column;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  padding: 0 0.5rem 1rem;
}

.phone-camera {
  width: 48px;
  height: 6px;
  background: #1e293b;
  border-radius: 4px;
}

.sim-idle-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
}

.caller-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.caller-avatar svg {
  width: 48px;
  height: 48px;
}

.sim-caller-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sim-caller-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 260px;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.btn-call-start {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--success);
  color: white;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
  transition: all 0.2s ease;
}

.btn-call-start svg {
  width: 22px;
  height: 22px;
}

.btn-call-start:hover {
  transform: scale(1.05);
}

/* Active Call View */
.sim-active-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.call-status-badge {
  font-size: 0.75rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.active-caller-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.call-timer {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 1rem;
}

/* Sound Wave Animation */
.audio-wave-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 50px;
  margin-bottom: 1rem;
}

.wave-bar {
  width: 4px;
  height: 8px;
  background: #6366f1;
  border-radius: 3px;
  transition: height 0.1s ease;
}

.audio-wave-container.speaking .wave-bar {
  animation: soundwave 1s ease-in-out infinite;
}

.audio-wave-container.speaking .wave-bar:nth-child(2) { animation-delay: 0.1s; }
.audio-wave-container.speaking .wave-bar:nth-child(3) { animation-delay: 0.2s; }
.audio-wave-container.speaking .wave-bar:nth-child(4) { animation-delay: 0.3s; }
.audio-wave-container.speaking .wave-bar:nth-child(5) { animation-delay: 0.4s; }
.audio-wave-container.speaking .wave-bar:nth-child(6) { animation-delay: 0.3s; }
.audio-wave-container.speaking .wave-bar:nth-child(7) { animation-delay: 0.2s; }
.audio-wave-container.speaking .wave-bar:nth-child(8) { animation-delay: 0.1s; }

@keyframes soundwave {
  0%, 100% { height: 8px; }
  50% { height: 42px; background: #a855f7; }
}

.sim-dialog-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
  width: 100%;
  text-align: left;
  min-height: 85px;
  margin-bottom: 1.25rem;
}

.dialog-speaker {
  font-size: 0.72rem;
  font-weight: 700;
  color: #818cf8;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.dialog-text {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--text-main);
}

.sim-call-controls {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.control-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.control-btn svg {
  width: 24px;
  height: 24px;
}

.mic-btn {
  background: #1e293b;
  color: white;
}

.mic-btn.active {
  background: #6366f1;
  box-shadow: 0 0 16px var(--primary-glow);
  animation: pulse-dot 1s infinite;
}

.hangup-btn {
  background: var(--danger);
  color: white;
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

.hangup-btn:hover {
  transform: scale(1.08);
}

.sim-text-fallback {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
}

.sim-text-fallback input {
  flex: 1;
  background: #1e293b;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  color: white;
  font-size: 0.8rem;
  outline: none;
}

/* Transcript Panel */
.sim-transcript-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  height: 580px;
  display: flex;
  flex-direction: column;
}

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

.badge-tag {
  font-size: 0.7rem;
  background: rgba(99, 102, 241, 0.15);
  color: #a5b4fc;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.transcript-feed {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.empty-feed {
  color: var(--text-dim);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 4rem;
}

/* SETTINGS VIEW */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
}

.settings-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.75rem;
}

.settings-card.full-width {
  grid-column: span 2;
}

.settings-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.card-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

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

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #090d16;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.quick-status-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.status-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #cbd5e1;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.status-chip:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: var(--primary);
  color: #c7d2fe;
}

.settings-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.save-status-msg {
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 600;
}

/* TELEPHONY GUIDE */
.telephony-guide {
  max-width: 900px;
}

.guide-banner {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.setup-steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
  padding-left: 4.5rem;
}

.step-number {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  width: 36px;
  height: 36px;
  background: #312e81;
  color: #c7d2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

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

.step-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-subtext {
  font-size: 0.775rem !important;
  color: var(--text-dim) !important;
  margin-top: 0.5rem;
}

.code-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #090d16;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin: 0.75rem 0;
  color: #38bdf8;
}

.btn-copy {
  background: #1e293b;
  border: none;
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-copy:hover {
  background: #334155;
  color: white;
}

.step-list {
  margin-left: 1.25rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-table-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem;
}

.info-table-row:last-child {
  border-bottom: none;
}

.info-table-row .label {
  color: var(--text-muted);
}

.info-table-row .val {
  font-family: var(--font-mono);
  color: #e2e8f0;
}

.hidden {
  display: none !important;
}
