/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  /* Purple accent palette — OneNote/Siri dark purple feel */
  --accent:         #9b5cf6;
  --accent-light:   #c084fc;
  --accent-dark:    #6d28d9;
  --accent-muted:   rgba(155, 92, 246, 0.18);
  --accent-border:  rgba(155, 92, 246, 0.28);
  --accent-glow:    rgba(155, 92, 246, 0.40);

  /* Backgrounds */
  --bg-deep:        #07020f;  /* near-black with purple tint */
  --bg-glass:       rgba(10, 5, 25, 0.62);
  --bg-glass-hi:    rgba(155, 92, 246, 0.07);

  /* Text */
  --text-primary:   #ede8ff;
  --text-secondary: rgba(237, 232, 255, 0.55);

  /* Layout */
  --menubar-h:      30px;
  --dock-gap:       12px;     /* gap from bottom of viewport */
  --icon-size:      52px;
  --icon-radius:    13px;

  /* Blur */
  --blur:           22px;
  --blur-sat:       160%;

  /* Font */
  --font:           'Nunito', system-ui, sans-serif;

  /* Transitions */
  --spring:         cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════════════
   DOCUMENT
═══════════════════════════════════════════════════ */
html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  user-select: none;
  -webkit-user-select: none;
}

/* Canvas: full-screen behind everything */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* Static fallback gradient if JS/canvas unavailable */
  background:
    radial-gradient(ellipse 60% 50% at 25% 35%, #4c1d95 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 75% 65%, #6d28d9 0%, transparent 70%),
    #07020f;
}

/* Desktop area: space between menubar and dock */
#desktop {
  position: fixed;
  top: var(--menubar-h);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  /* Windows will be children of this element */
}

/* ═══════════════════════════════════════════════════
   MENU BAR
═══════════════════════════════════════════════════ */
#menubar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--menubar-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;

  /* Frosted glass */
  backdrop-filter: blur(var(--blur)) saturate(var(--blur-sat));
  -webkit-backdrop-filter: blur(var(--blur)) saturate(var(--blur-sat));
  background: rgba(7, 2, 18, 0.72);
  border-bottom: 1px solid var(--accent-border);

  /* Subtle inner glow on bottom edge */
  box-shadow: 0 1px 0 rgba(155, 92, 246, 0.15);
}

.menubar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.03em;
}

.menubar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
}

.menubar-divider {
  width: 1px;
  height: 12px;
  background: var(--accent-border);
  flex-shrink: 0;
}

#weather-display {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  cursor: default;
  font-weight: 500;
}

#weather-text {
  font-size: 12px;
  letter-spacing: 0.01em;
}

#date-display {
  color: var(--text-primary);
  font-size: 12px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   DOCK
═══════════════════════════════════════════════════ */
#dock {
  position: fixed;
  bottom: calc(var(--dock-gap) + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  /* Prevent label clipping */
  overflow: visible;
}

.dock-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  overflow: visible;

  /* Frosted glass */
  backdrop-filter: blur(var(--blur)) saturate(var(--blur-sat));
  -webkit-backdrop-filter: blur(var(--blur)) saturate(var(--blur-sat));
  background: rgba(10, 5, 25, 0.78);
  border: 1px solid rgba(155, 92, 246, 0.42);
  border-radius: 22px;

  /* Layered shadow: depth + purple halo */
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 24px rgba(109, 40, 217, 0.20);
}

/* ──── Dock item (shared for <a> and <button>) ──── */
.dock-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-family: inherit;
  text-decoration: none;
  outline: none;
  transition: transform 0.25s var(--spring);
  overflow: visible;
}

.dock-item:hover {
  transform: translateY(-10px);
}

.dock-item:active {
  transform: translateY(-6px) scale(0.95);
  transition-duration: 0.1s;
}

.dock-item:focus-visible .dock-icon {
  box-shadow:
    0 0 0 2px var(--accent),
    0 4px 16px var(--accent-glow);
}

/* ──── Icon box ──── */
.dock-icon {
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: var(--icon-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  background: var(--accent-muted);
  border: 1px solid var(--accent-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.dock-item:hover .dock-icon {
  background: rgba(155, 92, 246, 0.26);
  border-color: rgba(155, 92, 246, 0.55);
  box-shadow:
    0 4px 20px var(--accent-glow),
    0 2px 8px rgba(0, 0, 0, 0.4);
  transform: scale(1.08);
}

/* ──── Tooltip label (appears above on hover) ──── */
.dock-label {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;

  /* Glass pill */
  background: rgba(15, 7, 35, 0.88);
  border: 1px solid var(--accent-border);
  border-radius: 7px;
  padding: 3px 9px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);

  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

/* Small arrow under the label */
.dock-label::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--accent-border);
}

.dock-item:hover .dock-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════ */
@media (max-width: 520px) {
  :root {
    --icon-size:   42px;
    --icon-radius: 11px;
    --dock-gap:    8px;
  }

  .dock-container {
    padding: 8px 12px;
    gap: 8px;
    border-radius: 18px;
  }

  .site-name {
    font-size: 12px;
  }

  #weather-display {
    display: none; /* hide on very small screens, date stays */
  }

  .menubar-divider {
    display: none;
  }

  #date-display {
    font-size: 11px;
  }
}

/* Touch devices: no hover fly-up, labels always visible below icon */
@media (hover: none) {
  .dock-item:hover {
    transform: none;
  }

  .dock-item:active {
    transform: scale(0.92);
  }

  /* Show labels as static text below the icon (not tooltip above) */
  .dock-label {
    position: static;
    transform: none;
    opacity: 1;
    font-size: 10px;
    padding: 3px 0 0;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: none;
  }

  .dock-label::after {
    display: none;
  }

  .dock-item:hover .dock-label {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .dock-item {
    transition: none;
  }
  .dock-icon {
    transition: none;
  }
  .dock-label {
    transition: opacity 0.1s ease;
  }
}

/* ═══════════════════════════════════════════════════
   OS WINDOWS
   Retro Win95/98 chrome on a modern dark/purple base.
   Windows live inside #desktop (position: fixed,
   z-index: 10), so they always sit below the menubar
   and dock (z-index: 200) regardless of their internal
   z-index values.
═══════════════════════════════════════════════════ */
.os-window {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  min-height: 120px;

  /* ── Win95-style 3D raised outer bevel ── */
  border: 2px solid;
  border-top-color:    #b580ff;
  border-left-color:   #b580ff;
  border-bottom-color: #1a0838;
  border-right-color:  #1a0838;

  /* ── Inner bevel + pixel drop shadow ── */
  box-shadow:
    inset  1px  1px 0 rgba(196, 156, 255, 0.28),
    inset -1px -1px 0 rgba(10, 3, 28, 0.85),
    4px 4px 0 rgba(0, 0, 0, 0.45),
    0 12px 40px rgba(0, 0, 0, 0.55);

  /* Open animation */
  animation: window-open 0.14s ease-out;
  transform-origin: center 30%;

  /* Transition for close/minimise (class-driven) */
  transition: opacity 0.1s ease, transform 0.1s ease;
}

@keyframes window-open {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* Close / minimise exit states — JS adds these classes */
.os-window.is-closing {
  opacity: 0;
  transform: scale(0.93);
}

.os-window.is-minimising {
  opacity: 0;
  transform: scale(0.92);
}

/* Active window: brighter bevel */
.os-window.window-active {
  border-top-color:    #c084fc;
  border-left-color:   #c084fc;
  border-bottom-color: #12052a;
  border-right-color:  #12052a;
}

/* ──── Title Bar ──── */
.window-titlebar {
  display: flex;
  align-items: center;
  padding: 3px 3px 3px 6px;
  gap: 4px;
  flex-shrink: 0;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;

  /* Active: vivid purple gradient */
  background: linear-gradient(
    90deg,
    #8b2cf5 0%,
    #6d28d9 50%,
    #4a1a9a 100%
  );
  border-bottom: 1px solid #12052a;

  /* Inset highlight on top — simulates the Win95 raised title edge */
  box-shadow: inset 0 1px 0 rgba(192, 132, 252, 0.35);
}

/* Inactive (not focused) title bar */
.os-window:not(.window-active) .window-titlebar {
  background: linear-gradient(
    90deg,
    #2d1b52 0%,
    #1e1240 50%,
    #160d32 100%
  );
  box-shadow: none;
}

/* Dragging cursor state (set via JS) */
.window-titlebar.is-dragging {
  cursor: grabbing;
}

.window-title {
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.os-window:not(.window-active) .window-title {
  color: rgba(255, 255, 255, 0.42);
  text-shadow: none;
}

/* ──── Control Buttons ──── */
.window-controls {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.window-btn {
  width: 18px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  cursor: pointer;

  /* Win95 raised button */
  background: #7c3aed;
  border: 1px solid;
  border-top-color:    #c084fc;
  border-left-color:   #c084fc;
  border-bottom-color: #12052a;
  border-right-color:  #12052a;

  color: #fff;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;

  /* No transition — pixel-snappy */
  transition: none;
}

.window-btn:hover {
  background: #8b46f5;
}

/* Win95 press: invert border, nudge 1px */
.window-btn:active {
  border-top-color:    #12052a;
  border-left-color:   #12052a;
  border-bottom-color: #c084fc;
  border-right-color:  #c084fc;
  transform: translate(1px, 1px);
}

/* Close turns red on hover */
.window-btn-close:hover {
  background: #b91c1c;
}
.window-btn-close:active {
  background: #991b1b;
}

/* ──── Window Body ──── */
.window-body {
  flex: 1;
  overflow: auto;
  position: relative;
  background: #080416;

  /* Sunken inner bevel */
  box-shadow:
    inset  1px  1px 0 #12052a,
    inset -1px -1px 0 rgba(196, 156, 255, 0.08);

  /* Purple scrollbars */
  scrollbar-width: thin;
  scrollbar-color: #6d28d9 #140930;
}

.window-body::-webkit-scrollbar        { width: 8px; height: 8px; }
.window-body::-webkit-scrollbar-track  { background: #140930; }
.window-body::-webkit-scrollbar-thumb  { background: #6d28d9; border: 1px solid #3b0764; }
.window-body::-webkit-scrollbar-thumb:hover { background: #7c3aed; }

/* ──── Mobile: near-full-screen ──── */
@media (max-width: 600px) {
  .os-window {
    /* Override any JS-set position to fill the desktop area */
    position: fixed !important;
    left:   4px !important;
    right:  4px !important;
    top:    calc(var(--menubar-h) + 6px) !important;
    bottom: 90px !important;
    width:  auto !important;
  }

  /* Disable grab cursor — no drag on mobile */
  .window-titlebar {
    cursor: default;
    touch-action: auto;
  }
}

/* ──── Reduced motion ──── */
@media (prefers-reduced-motion: reduce) {
  .os-window {
    animation: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════
   PLAYGROUND WINDOW CONTENTS
═══════════════════════════════════════════════════ */

/* ──── Shared loading / error states ──── */
.pg-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 160px;
  gap: 14px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 24px;
  line-height: 1.5;
}

/* Spinner */
.pg-spinner {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(155, 92, 246, 0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: pg-spin 0.75s linear infinite;
  flex-shrink: 0;
}

@keyframes pg-spin {
  to { transform: rotate(360deg); }
}

.pg-retry-btn {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-light);
  background: rgba(155, 92, 246, 0.14);
  border: 1px solid rgba(155, 92, 246, 0.35);
  border-radius: 6px;
  padding: 5px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.pg-retry-btn:hover {
  background: rgba(155, 92, 246, 0.26);
}

/* ──── Project grid ──── */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 10px;
  padding: 14px;
}

/* ──── Individual tile ──── */
.pg-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.pg-tile:hover {
  background: rgba(155, 92, 246, 0.13);
  border-color: rgba(155, 92, 246, 0.32);
}

.pg-tile:active {
  background: rgba(155, 92, 246, 0.22);
}

/* ──── Thumbnail wrapper ──── */
.pg-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  overflow: hidden;
  background: rgba(109, 40, 217, 0.10);
  border: 1px solid rgba(155, 92, 246, 0.18);
  flex-shrink: 0;
}

/* Placeholder icon — always rendered underneath the img */
.pg-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The actual thumbnail — sits above the placeholder */
.pg-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.22s ease;
}

.pg-tile:hover .pg-thumb {
  transform: scale(1.06);
}

/* ──── Project name ──── */
.pg-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.35;
  word-break: break-word;
  width: 100%;
  transition: color 0.15s ease;
}

.pg-tile:hover .pg-name {
  color: var(--text-primary);
}

/* ──── Offline / fallback badge ──── */
.pg-offline-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(155, 92, 246, 0.5);
  border-top: 1px solid rgba(155, 92, 246, 0.1);
}

/* ──── Reduced motion ──── */
@media (prefers-reduced-motion: reduce) {
  .pg-spinner {
    animation: none;
    border-color: var(--accent);
  }
  .pg-thumb {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════
   SETTINGS WINDOW CONTENTS
   Sidebar-nav + content-pane layout.
   Adding a future section = add a .settings-nav button
   and a matching .settings-section panel. JS handles
   the active class toggling automatically.
═══════════════════════════════════════════════════ */

/* ──── Overall layout ──── */
.settings-layout {
  display: flex;
  height: 100%;
  overflow: hidden;
}

/* ──── Left sidebar ──── */
.settings-sidebar {
  width: 126px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 6px 0;
  background: rgba(0, 0, 0, 0.28);
  border-right: 1px solid rgba(155, 92, 246, 0.14);
  overflow-y: auto;
  scrollbar-width: none; /* hide scrollbar — it's a short list */
}
.settings-sidebar::-webkit-scrollbar { display: none; }

.settings-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s ease, color 0.12s ease;
}

.settings-nav svg {
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.12s ease;
}

.settings-nav:hover {
  background: rgba(155, 92, 246, 0.12);
  color: var(--text-primary);
}
.settings-nav:hover svg { opacity: 1; }

/* Active item: left accent bar (VS Code style) */
.settings-nav.active {
  background: rgba(155, 92, 246, 0.18);
  color: var(--accent-light);
  box-shadow: inset 3px 0 0 var(--accent);
}
.settings-nav.active svg { opacity: 1; }

/* ──── Right content pane ──── */
.settings-content {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  scrollbar-width: thin;
  scrollbar-color: #6d28d9 #140930;
}
.settings-content::-webkit-scrollbar       { width: 6px; }
.settings-content::-webkit-scrollbar-track { background: #140930; }
.settings-content::-webkit-scrollbar-thumb { background: #6d28d9; }

/* Section panels — only the active one is shown */
.settings-section         { display: none; }
.settings-section.active  { display: block; }

/* Section title */
.settings-heading {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* ──── Wallpaper grid ──── */
.settings-wp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ──── Individual wallpaper card ──── */
.settings-wp-card {
  position: relative;
  cursor: pointer;
  border-radius: 7px;
  overflow: hidden;
  border: 2px solid rgba(155, 92, 246, 0.20);
  background: #0a0518;
  transition: border-color 0.15s ease, transform 0.15s ease;
  outline: none; /* custom focus below */
}

.settings-wp-card:hover {
  border-color: rgba(155, 92, 246, 0.55);
  transform: scale(1.03);
}

.settings-wp-card:focus-visible {
  box-shadow: 0 0 0 2px var(--accent);
}

/* Selected: vivid purple border */
.settings-wp-card.selected {
  border-color: var(--accent);
}

/* The mini canvas preview */
.settings-wp-canvas {
  display: block;
  width: 100%;
  height: auto;   /* maintains 16:9 set by width/height attributes */
}

/* Name strip below the canvas */
.settings-wp-name {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(237, 232, 255, 0.58);
  text-align: center;
  padding: 4px 4px 5px;
  background: rgba(7, 2, 18, 0.72);
  transition: color 0.12s ease;
}

.settings-wp-card.selected .settings-wp-name,
.settings-wp-card:hover    .settings-wp-name {
  color: var(--text-primary);
}

/* Checkmark badge — shown only when selected */
.settings-wp-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  display: none;           /* flex when .selected */
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
}

.settings-wp-card.selected .settings-wp-badge {
  display: flex;
}

/* ──── Mobile: sidebar becomes a horizontal tab bar ──── */
@media (max-width: 600px) {
  .settings-layout {
    flex-direction: column;
  }

  .settings-sidebar {
    width: 100%;
    flex-direction: row;
    padding: 0;
    border-right: none;
    border-bottom: 1px solid rgba(155, 92, 246, 0.14);
    overflow-x: auto;
    overflow-y: hidden;
    flex-shrink: 0;
    gap: 0;
  }

  .settings-nav {
    flex-direction: column;
    gap: 3px;
    padding: 8px 16px;
    font-size: 11px;
    /* Active indicator: bottom border instead of left */
    box-shadow: none !important;
    border-bottom: 3px solid transparent;
  }

  .settings-nav.active {
    border-bottom-color: var(--accent);
    box-shadow: none !important;
  }

  .settings-wp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ──── Reduced motion ──── */
@media (prefers-reduced-motion: reduce) {
  .settings-wp-card {
    transition: border-color 0.1s ease;
    transform: none !important;
  }
}
