/* ===================================
   QR Code Generator - Styles
   Modern, Beautiful & Responsive
   =================================== */

/* CSS Variables */
:root {
  /* Light Theme */
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-light: #e0e7ff;
  --secondary: #64748b;
  --secondary-hover: #475569;
  --accent: #ec4899;
  --accent-light: #fce7f3;

  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bg-gradient-subtle: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);

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

  --border-color: #e2e8f0;
  --border-radius: 12px;
  --border-radius-lg: 16px;
  --border-radius-sm: 8px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --transition: all 0.2s ease;
  --transition-slow: all 0.3s ease;
}

/* Dark Theme */
[data-theme="dark"] {
  --primary: #818cf8;
  --primary-hover: #a5b4fc;
  --primary-light: #312e81;
  --secondary: #94a3b8;
  --secondary-hover: #cbd5e1;

  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --bg-gradient: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  --bg-gradient-subtle: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);

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

  --border-color: #334155;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.4), 0 4px 6px -4px rgb(0 0 0 / 0.3);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* App Container */
.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===================================
   Header
   =================================== */
.header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .header {
  background: rgba(15, 23, 42, 0.9);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-gradient);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation Tabs */
.nav-tabs {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-tertiary);
  padding: 4px;
  border-radius: var(--border-radius);
}

.nav-tab {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.nav-tab:hover {
  color: var(--text-primary);
}

.nav-tab.active {
  background: var(--bg-primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Theme Toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bg-tertiary);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--bg-gradient);
  color: white;
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

.theme-toggle .moon-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

/* ===================================
   Main Content
   =================================== */
.main-content {
  flex: 1;
  padding: 1.5rem;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

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

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

/* ===================================
   Generator Layout
   =================================== */
.generator-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 1.5rem;
  align-items: start;
}

/* Cards */
.card {
  background: var(--bg-primary);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.card + .card {
  margin-top: 1rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===================================
   QR Type Selection
   =================================== */
.qr-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.qr-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 0.5rem;
  border: 2px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
}

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

.qr-type-btn span {
  font-size: 0.75rem;
  font-weight: 500;
}

.qr-type-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.qr-type-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

/* ===================================
   Input Fields
   =================================== */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input-group.hidden {
  display: none;
}

.input-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: var(--transition);
  font-family: inherit;
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.input::placeholder {
  color: var(--text-muted);
}

.textarea {
  resize: vertical;
  min-height: 80px;
}

.select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  margin-top: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

/* ===================================
   Customization
   =================================== */
.customization-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.full-width {
  grid-column: 1 / -1;
}

.color-group label,
.style-group label,
.logo-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: block;
}

.color-picker-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--border-color);
}

.color-picker {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
}

.color-picker::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-picker::-webkit-color-swatch {
  border: none;
  border-radius: 6px;
}

.color-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* Style Options */
.style-options {
  display: flex;
  gap: 0.5rem;
}

.style-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

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

.style-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.style-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

/* Error Correction */
.error-correction-options {
  display: flex;
  gap: 0.5rem;
}

.ec-btn {
  flex: 1;
  padding: 0.625rem 1rem;
  border: 2px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.ec-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.ec-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

/* Logo Upload */
.logo-upload-area {
  border: 2px dashed var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg-secondary);
}

.logo-upload-area:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.logo-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
}

.logo-preview svg {
  width: 32px;
  height: 32px;
}

.logo-preview span {
  font-size: 0.875rem;
}

.logo-preview img {
  max-width: 80px;
  max-height: 80px;
  border-radius: var(--border-radius-sm);
}

/* Range Slider */
.range-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-tertiary);
  appearance: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* Tooltip */
.tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--text-muted);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 50%;
  cursor: help;
  position: relative;
}

.tooltip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0.75rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 400;
  border-radius: var(--border-radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
  max-width: 200px;
  white-space: normal;
  text-align: center;
  z-index: 10;
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* ===================================
   Preview Panel
   =================================== */
.preview-panel {
  position: sticky;
  top: 80px;
}

.preview-card {
  text-align: center;
}

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

.qr-preview-container {
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 1rem 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-preview canvas,
.qr-preview svg {
  max-width: 100%;
  height: auto !important;
  border-radius: var(--border-radius-sm);
}

.qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
}

.qr-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.5;
}

.qr-placeholder p {
  font-size: 0.9375rem;
}

/* Download Buttons */
.download-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.download-buttons .btn {
  flex: 1;
}

/* Tips Card */
.tips-card {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
  border: none;
}

[data-theme="dark"] .tips-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
}

.tips-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.tips-list {
  list-style: none;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.tips-list li {
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.tips-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--bg-gradient);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border-radius: var(--border-radius-sm);
}

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

/* ===================================
   Scanner
   =================================== */
.scanner-container {
  max-width: 600px;
  margin: 0 auto;
}

.scanner-card {
  text-align: center;
}

.scanner-subtitle {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.scanner-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.or-divider {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.upload-btn {
  cursor: pointer;
}

.camera-container {
  margin-top: 1.5rem;
  position: relative;
}

#cameraVideo {
  width: 100%;
  max-width: 400px;
  border-radius: var(--border-radius);
  background: #000;
}

.scan-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 400px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.scan-frame {
  width: 200px;
  height: 200px;
  border: 3px solid var(--primary);
  border-radius: var(--border-radius);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.scan-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  text-align: left;
}

.scan-result h4 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.result-content {
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  word-break: break-all;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

/* ===================================
   History
   =================================== */
.history-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.history-list {
  display: grid;
  gap: 1rem;
}

.history-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.history-item:hover {
  background: var(--bg-tertiary);
}

.history-qr {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: white;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.history-qr canvas,
.history-qr svg {
  max-width: 100%;
  max-height: 100%;
}

.history-info {
  flex: 1;
  min-width: 0;
}

.history-type {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.history-content {
  font-size: 0.875rem;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.25rem;
}

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

.history-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.empty-history {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.empty-history svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-history p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.empty-history span {
  font-size: 0.875rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
  background: var(--bg-primary);
}

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

/* ===================================
   Toast
   =================================== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 0.875rem 1.5rem;
  background: var(--text-primary);
  color: var(--bg-primary);
  border-radius: var(--border-radius);
  font-size: 0.9375rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  opacity: 0;
  transition: var(--transition-slow);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
  .generator-layout {
    grid-template-columns: 1fr;
  }

  .preview-panel {
    position: static;
  }

  .options-panel {
    order: 2;
  }

  .preview-panel {
    order: 1;
  }
}

@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .nav-tabs {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .theme-toggle {
    order: 2;
  }

  .qr-type-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .qr-type-btn {
    padding: 0.5rem 0.25rem;
  }

  .qr-type-btn svg {
    width: 20px;
    height: 20px;
  }

  .qr-type-btn span {
    font-size: 0.625rem;
  }

  .customization-grid {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    flex-direction: column;
  }

  .history-item {
    flex-direction: column;
    text-align: center;
  }

  .history-qr {
    margin: 0 auto;
  }

  .history-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 1rem;
  }

  .card {
    padding: 1rem;
  }

  .qr-type-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .style-options {
    flex-wrap: wrap;
  }

  .error-correction-options {
    flex-wrap: wrap;
  }

  .ec-btn {
    flex: 0 0 calc(50% - 0.25rem);
  }

  .scanner-options {
    flex-direction: column;
  }

  .or-divider {
    display: none;
  }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
  .header,
  .footer,
  .options-panel,
  .download-buttons,
  .tips-card {
    display: none !important;
  }

  .preview-panel {
    width: 100%;
  }

  .qr-preview-container {
    background: white;
    padding: 0;
  }
}

/* ===================================
   Scrollbar Styling
   =================================== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

/* Selection */
::selection {
  background: var(--primary);
  color: white;
}
