/* ==========================================================================
   AppCache Facts - Bespoke Technical Desk Design System
   Visual Identity: Clean, High-Contrast Standards Notebook & Tech Spec Viewer
   ========================================================================== */

/* --- Custom Variables & Theme Tokens (OKLCH Color Space) --- */
:root {
  --bg-page: oklch(99% 0.003 240);          /* Pure off-white, light slate canvas */
  --bg-grid: oklch(94% 0.005 240);          /* Delicate grid lines */
  --bg-panel: oklch(97.5% 0.003 240);        /* Sleek sidebar/panel background */
  --bg-window: oklch(100% 0 0);             /* Solid white for primary container */
  
  --text-primary: oklch(22% 0.015 240);     /* Deep technical slate-navy */
  --text-secondary: oklch(48% 0.02 240);    /* Elegant mid-slate grey */
  --text-light: oklch(72% 0.015 240);       /* Muted technical metadata labels */
  
  --border-color: oklch(89% 0.01 240);      /* Hairline border */
  --border-dark: oklch(22% 0.015 240);      /* High-contrast element outline */
  
  --accent-blue: oklch(58% 0.16 250);       /* Classic standards-organization blue */
  --accent-blue-hover: oklch(48% 0.18 250);
  --accent-blue-light: oklch(96% 0.015 250);
  --accent-orange: oklch(62% 0.17 40);      /* Warning/deprecation orange */
  --accent-orange-light: oklch(96% 0.01 40);
  --accent-green: oklch(65% 0.16 145);      /* Secure HTTPS green */
  --accent-green-light: oklch(96% 0.01 145);
  
  /* Modern Typography System (System font fallbacks only) */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Fira Code", monospace;
  
  /* Shadows & Transformations */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-button: 2px 2px 0px var(--border-dark);
  
  --transition-speed: 0.15s;
}

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

html, body {
  height: 100%;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Engineering notebook grid background */
.vintage-grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image: 
    linear-gradient(to right, var(--bg-grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--bg-grid) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.7;
}

/* --- Main Layout Container --- */
.app-container {
  max-width: 1240px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 6rem);
}

@media (max-width: 1024px) {
  .app-container {
    margin: 1.5rem auto;
    padding: 0 1rem;
    min-height: calc(100vh - 3rem);
  }
}

@media (max-width: 768px) {
  .app-container {
    margin: 0;
    padding: 0;
    min-height: 100vh;
  }
}

/* --- Clean Browser Window Frame --- */
.browser-window-header {
  background-color: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-bottom: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 1rem 1.25rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .browser-window-header {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 0.75rem 1rem 0 1rem;
  }
}

/* Window Control Buttons */
.window-controls {
  display: flex;
  gap: 8px;
  position: absolute;
  top: 1.2rem;
  left: 1.25rem;
}

.control-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.control-dot.close { background-color: oklch(65% 0.18 25); }
.control-dot.minimize { background-color: oklch(75% 0.15 75); }
.control-dot.maximize { background-color: oklch(68% 0.16 140); }

/* Window Title Bar */
.window-title-bar {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-secondary);
  padding-bottom: 2px;
}

@media (max-width: 600px) {
  .window-controls {
    display: none;
  }
  .window-title-bar {
    text-align: left;
    padding-left: 0.25rem;
  }
}

/* Address & Utility Bar */
.address-bar-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
}

@media (max-width: 600px) {
  .address-bar-container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-window);
  color: var(--text-primary);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-speed);
}

.nav-btn:hover:not(.disabled) {
  background-color: var(--bg-panel);
  border-color: var(--text-secondary);
  color: var(--accent-blue);
}

.nav-btn.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  background-color: transparent;
  border-color: transparent;
}

/* Address URL Display */
.address-input-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  background-color: var(--bg-window);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.775rem;
  color: var(--text-secondary);
  overflow: hidden;
  white-space: nowrap;
  transition: border-color var(--transition-speed);
}

.address-input-wrapper:hover {
  border-color: var(--text-light);
}

.secure-icon {
  margin-right: 8px;
  color: var(--accent-green);
  display: flex;
  align-items: center;
}

.address-protocol {
  opacity: 0.4;
}

.address-url {
  color: var(--text-primary);
  font-weight: 555;
}

/* Status Badge */
.status-badge-container {
  display: flex;
  align-items: center;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 5px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.status-deprecated {
  background-color: var(--accent-orange-light);
  color: var(--accent-orange);
  border: 1px solid oklch(85% 0.04 40);
}

/* Browser Nav Tabs */
.browser-tabs {
  display: flex;
  gap: 6px;
  padding-top: 4px;
}

.browser-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1.25rem;
  background-color: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  top: 1px;
  transition: all var(--transition-speed);
}

.browser-tab:hover {
  background-color: oklch(95% 0.005 240);
  color: var(--text-primary);
}

.browser-tab.active {
  background-color: var(--bg-window);
  color: var(--text-primary);
  border-color: var(--border-color);
  z-index: 5;
  box-shadow: 0 -2px 4px -2px rgba(0, 0, 0, 0.03);
}

/* Active tab top indicator border */
.browser-tab.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-blue);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.tab-spacer {
  flex-grow: 1;
  border-bottom: 1px solid var(--border-color);
}

/* --- Window Body Layout --- */
.window-body {
  display: flex;
  background-color: var(--bg-window);
  border: 1px solid var(--border-color);
  flex-grow: 1;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-premium);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .window-body {
    flex-direction: column;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

@media (max-width: 768px) {
  .window-body {
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}

/* --- Sidebar Panel --- */
.window-sidebar {
  width: 290px;
  background-color: var(--bg-panel);
  border-right: 1px solid var(--border-color);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .window-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
  }
}

.panel-section h3 {
  font-family: var(--font-mono);
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 6px;
  text-transform: uppercase;
}

/* Metadata Table styling */
.meta-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.825rem;
}

.meta-table tr {
  border-bottom: 1px solid oklch(95% 0.005 240);
}

.meta-table tr:last-child {
  border-bottom: none;
}

.meta-table th {
  text-align: left;
  font-weight: 555;
  color: var(--text-secondary);
  padding: 8px 0;
  width: 45%;
}

.meta-table td {
  color: var(--text-primary);
  padding: 8px 0;
  font-weight: 500;
}

.meta-table a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-speed);
}

.meta-table a:hover {
  border-bottom-color: var(--accent-blue);
}

.status-indicator-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.status-indicator-dot.red {
  background-color: var(--accent-orange);
  box-shadow: 0 0 6px var(--accent-orange);
}

/* Chronology Timeline */
.timeline-list {
  list-style: none;
  position: relative;
  padding-left: 0.5rem;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  border-left: 1px dashed var(--border-color);
}

.timeline-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.825rem;
}

.timeline-list li:last-child {
  margin-bottom: 0;
}

.timeline-list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--bg-panel);
  border: 2px solid var(--text-secondary);
  z-index: 1;
  transition: all var(--transition-speed);
}

.timeline-list li:hover::before {
  border-color: var(--accent-blue);
  transform: scale(1.2);
}

.timeline-date {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.15rem;
}

.timeline-desc {
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Note Card in Sidebar */
.note-card {
  background-color: var(--bg-page);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--accent-blue);
  border-radius: 6px;
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-sm);
}

.note-card-title {
  font-family: var(--font-mono);
  font-size: 0.775rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.note-card p {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* --- Main Content Pane --- */
.window-main-content {
  flex-grow: 1;
  padding: 3rem;
  background-color: var(--bg-window);
  overflow-y: auto;
}

@media (max-width: 768px) {
  .window-main-content {
    padding: 2rem 1.5rem;
  }
}

/* --- Notebook Article Formatting --- */
.notebook-article {
  max-width: 800px;
}

.article-header {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.75rem;
}

.article-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.meta-label {
  font-weight: 500;
}

.meta-val {
  font-weight: 700;
  color: var(--text-secondary);
}

.meta-divider {
  margin: 0 10px;
  color: var(--border-color);
}

.article-title {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

@media (max-width: 600px) {
  .article-title {
    font-size: 1.85rem;
  }
}

.article-subtitle {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Article Body Content */
.article-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-primary);
}

.article-body p {
  margin-bottom: 1.75rem;
}

.article-body strong {
  font-weight: 600;
  color: var(--text-primary);
}

.article-body h3 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2.5rem 0 1.25rem 0;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  border-bottom: 1px solid oklch(95% 0.005 240);
  padding-bottom: 0.5rem;
}

/* Fact Sheet List styling (Standard layout) */
.facts-body {
  font-size: 1.05rem;
  line-height: 1.75;
}

.facts-body p {
  margin-bottom: 1.75rem;
}

.facts-body > ul {
  list-style: none;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.facts-body > ul > li {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-window);
  transition: background-color var(--transition-speed);
}

.facts-body > ul > li:last-child {
  border-bottom: none;
}

.facts-body > ul > li:hover {
  background-color: oklch(99.2% 0.001 240);
}

.facts-body > ul > li::before {
  content: "⚡";
  position: absolute;
  left: 1.25rem;
  top: 1.5rem;
  font-size: 1rem;
  color: var(--accent-blue);
  line-height: 1.75;
}

/* Nested lists under fact bullets */
.facts-body > ul > li > ul {
  list-style: none;
  margin-top: 1rem;
  padding-left: 0rem;
  border-left: 2px solid var(--accent-blue);
  background-color: oklch(98.5% 0.002 240);
  border-radius: 0 4px 4px 0;
}

.facts-body > ul > li > ul > li {
  position: relative;
  padding: 0.75rem 1.25rem 0.75rem 1.75rem;
  font-size: 0.925rem;
  color: var(--text-secondary);
  border-bottom: 1px solid oklch(96% 0.002 240);
}

.facts-body > ul > li > ul > li:last-child {
  border-bottom: none;
}

.facts-body > ul > li > ul > li::before {
  content: "→";
  position: absolute;
  left: 0.75rem;
  color: var(--accent-blue);
  font-weight: 600;
}

/* Content Links */
.article-body a,
.facts-body a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1.5px solid oklch(85% 0.04 250);
  transition: all var(--transition-speed);
}

.article-body a:hover,
.facts-body a:hover {
  color: var(--accent-blue-hover);
  border-bottom-color: var(--accent-blue-hover);
  background-color: var(--accent-blue-light);
}

/* Technical Code Block Design */
pre {
  background-color: oklch(21% 0.015 240);
  border-radius: 8px;
  padding: 1.25rem;
  margin: 1.75rem 0;
  overflow-x: auto;
  border: 1px solid oklch(15% 0.01 240);
  box-shadow: var(--shadow-md);
}

code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: oklch(90% 0.01 240);
}

/* Inline code styles */
:not(pre) > code {
  background-color: oklch(96.5% 0.005 240);
  color: var(--accent-orange);
  padding: 2px 6px;
  border-radius: 5px;
  font-size: 0.825rem;
  border: 1px solid oklch(90% 0.01 240);
  font-weight: 500;
}

/* Code Syntax Simulation */
pre code .keyword { color: oklch(75% 0.14 15); font-weight: 600; }
pre code .string { color: oklch(80% 0.12 140); }
pre code .comment { color: oklch(55% 0.02 240); font-style: italic; }

/* --- Modern Callout Box Component --- */
.callout-box {
  display: flex;
  gap: 1.5rem;
  background-color: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--accent-blue);
  border-radius: 8px;
  padding: 1.75rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-speed);
}

.callout-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.callout-icon {
  font-size: 2rem;
  line-height: 1;
}

.callout-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.callout-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.callout-actions {
  display: flex;
  gap: 0.85rem;
}

/* --- Buttons --- */
.custom-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-speed);
}

.primary-btn {
  background-color: var(--accent-blue);
  color: var(--bg-window);
  border: 1px solid var(--accent-blue);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.primary-btn:hover {
  background-color: var(--accent-blue-hover);
  border-color: var(--accent-blue-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.primary-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

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

.secondary-btn:hover {
  background-color: var(--bg-page);
  border-color: var(--text-secondary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.secondary-btn:active {
  transform: translateY(0);
}

/* Back callout custom layout */
.back-callout {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 2rem 0;
  box-shadow: none;
}

.back-callout:hover {
  transform: none;
}

/* --- Resources Grid Section --- */
.resources-section {
  margin-top: 4rem;
  border-top: 1px dashed var(--border-color);
  padding-top: 3rem;
}

.resources-section h2 {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}

/* Grid elements styled as premium cards */
.resources-grid > ul {
  display: contents;
}

.resources-grid ul li,
.resources-grid li {
  list-style: none !important;
  background-color: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text-secondary);
  transition: all var(--transition-speed);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.resources-grid li:hover {
  background-color: var(--bg-window);
  border-color: var(--text-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.resources-grid li strong {
  color: var(--text-primary);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.5rem;
}

.resources-grid li a {
  margin-top: 1rem;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.725rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-speed);
}

.resources-grid li a:hover {
  color: var(--accent-blue-hover);
  border-bottom-color: var(--accent-blue-hover);
}

.resources-grid li a::after {
  content: " ↗";
}

/* --- Window Status Bar (Footer) --- */
.browser-status-bar {
  background-color: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.675rem;
  color: var(--text-secondary);
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .browser-status-bar {
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    padding: 0.5rem 1rem;
  }
}

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

/* Pulsating status indicator */
.status-indicator-pulse {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px var(--accent-orange);
  animation: pulse-orange 2.2s infinite;
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0px oklch(75% 0.15 40 / 0.5);
  }
  70% {
    box-shadow: 0 0 0 5px oklch(75% 0.15 40 / 0);
  }
  100% {
    box-shadow: 0 0 0 0px oklch(75% 0.15 40 / 0);
  }
}

.status-right {
  display: flex;
  gap: 2rem;
}

@media (max-width: 500px) {
  .status-right {
    display: none;
  }
}
