/* ==========================================================================
   ADAXE - FIREBASE ADMIN CMS STUDIO STYLESHEET
   ========================================================================== */

:root {
  --admin-bg: #0b0f19;
  --admin-surface: #111827;
  --admin-card: #1f2937;
  --admin-primary: #d4af37;
  --admin-primary-hover: #b8860b;
  --admin-accent: #f3d068;
  --admin-success: #10b981;
  --admin-warning: #f59e0b;
  --admin-danger: #ef4444;
  --admin-text: #f9fafb;
  --admin-text-muted: #9ca3af;
  --admin-font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--admin-font);
  background-color: var(--admin-bg);
  color: var(--admin-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.admin-header {
  background: var(--admin-surface);
  border-bottom: 1px solid var(--admin-border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
}

.admin-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  background: rgba(212, 175, 55, 0.15);
  color: #f3d068;
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-weight: 600;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-admin-link {
  color: var(--admin-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.btn-admin-link:hover {
  color: #ffffff;
}

/* Layout */
.admin-layout {
  display: flex;
  flex: 1;
}

.admin-sidebar {
  width: 240px;
  background: var(--admin-surface);
  border-right: 1px solid var(--admin-border);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: none;
  border: none;
  color: var(--admin-text-muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
}

.admin-tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.admin-tab-btn.active {
  background: var(--admin-primary);
  color: #ffffff;
}

.admin-main {
  flex: 1;
  padding: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.tab-pane {
  display: none;
}

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

/* Status Banner */
.firebase-status-card {
  border-radius: 10px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid;
}

.firebase-status-card.connected {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.firebase-status-card.disconnected {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

/* Form Styles */
.cms-card {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.cms-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.cms-card-desc {
  font-size: 0.875rem;
  color: var(--admin-text-muted);
  margin-bottom: 1.5rem;
}

.admin-form-group {
  margin-bottom: 1.25rem;
}

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

.admin-input {
  width: 100%;
  background: var(--admin-card);
  border: 1px solid var(--admin-border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-size: 16px; /* Prevents auto-zoom on mobile Safari */
}

.admin-input:focus {
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}

.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.admin-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  min-height: 46px;
}

.admin-btn-primary {
  background: var(--admin-primary);
  color: #ffffff;
}

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

/* Photo Uploader Styles */
.photo-uploader-wrap {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.photo-preview-container {
  width: 140px;
  max-height: 170px;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--admin-primary);
  background: #000;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.photo-preview-img {
  width: 100%;
  height: auto;
  max-height: 170px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.photo-upload-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-upload-browse {
  background: rgba(212, 175, 55, 0.12);
  border: 1px dashed var(--admin-primary);
  color: #f3d068;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
  width: fit-content;
}

.btn-upload-browse:hover {
  background: rgba(212, 175, 55, 0.25);
  color: #ffffff;
}

/* Leads Table & Cards */
.leads-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.lead-item-card {
  background: var(--admin-card);
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.lead-item-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.lead-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.lead-badge-status {
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.lead-client-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.lead-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
  padding: 0.85rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  font-size: 0.875rem;
}

.lead-details-grid strong {
  display: block;
  font-size: 0.75rem;
  color: var(--admin-text-muted);
  text-transform: uppercase;
}

/* Notification Toast */
.admin-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: none;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.admin-toast.show {
  display: block;
  animation: slide-up 0.3s ease-out;
}

@keyframes slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   RESULTS & CASE STUDIES MANAGER STYLES
   ========================================================================== */

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

.admin-case-item-card {
  background: var(--admin-card);
  border: 1px solid var(--admin-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-case-item-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.admin-case-header-visual {
  height: 120px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-preview-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.6;
}

.admin-case-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  color: var(--admin-accent);
  z-index: 2;
}

.admin-case-brand-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.admin-case-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-case-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.admin-case-desc {
  font-size: 0.85rem;
  color: var(--admin-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.admin-case-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.75rem 0.5rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-case-metric-box {
  text-align: center;
}

.admin-case-metric-val {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #10b981;
}

.admin-case-metric-lbl {
  display: block;
  font-size: 0.7rem;
  color: var(--admin-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-case-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--admin-border);
}

.reorder-btn-group {
  display: flex;
  gap: 0.25rem;
}

.btn-case-icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--admin-border);
  color: var(--admin-text-muted);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-case-icon:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.btn-case-action {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s;
}

.btn-case-edit {
  background: rgba(212, 175, 55, 0.15);
  color: #f3d068;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.btn-case-edit:hover {
  background: var(--admin-primary);
  color: #ffffff;
}

.btn-case-delete {
  background: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.45rem 0.65rem;
}

.btn-case-delete:hover {
  background: var(--admin-danger);
  color: #ffffff;
}

/* ==========================================================================
   MODAL DIALOG STYLES
   ========================================================================== */

.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.admin-modal-dialog {
  background: var(--admin-surface);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  animation: modalScale 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScale {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.admin-modal-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
}

.admin-modal-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.admin-modal-close {
  background: none;
  border: none;
  color: var(--admin-text-muted);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.5rem;
  transition: color 0.2s;
}

.admin-modal-close:hover {
  color: #ffffff;
}

.admin-modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--admin-border);
  background: rgba(0, 0, 0, 0.2);
  margin-top: 1.5rem;
}

/* Gradient Preset Chips */
.gradient-preset-picker {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.gradient-chip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.gradient-chip:hover {
  transform: scale(1.1);
}

.gradient-chip.active {
  border-color: #ffffff;
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* Metrics Inputs in Modal */
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.metric-input-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  padding: 0.75rem;
}

.metric-input-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--admin-accent);
  margin-bottom: 0.4rem;
}

/* Live Card Preview in Modal */
.case-modal-preview-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1.25rem;
  margin: 1.25rem 0 0.5rem;
}

.preview-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--admin-text-muted);
  text-align: center;
  margin-bottom: 1rem;
}

/* Case Image Uploader */
.case-image-uploader-wrap {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  align-items: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 0.4rem;
}

.case-img-preview-box {
  width: 120px;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--admin-border);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.case-img-preview-box img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.case-img-placeholder {
  font-size: 0.7rem;
  color: var(--admin-text-muted);
  line-height: 1.3;
  padding: 0.25rem;
}

.case-img-upload-controls {
  display: flex;
  flex-direction: column;
}

.admin-case-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.case-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.case-preview-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
}

.case-mockup-frame {
  width: 100%;
  background: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.mockup-titlebar {
  background: #131b2e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.mockup-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.mockup-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.mockup-dots .dot.red { background: #ef4444; }
.mockup-dots .dot.yellow { background: #f59e0b; }
.mockup-dots .dot.green { background: #10b981; }

.mockup-domain {
  font-family: monospace;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mockup-status-live {
  color: #10b981;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mockup-status-live::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.mockup-viewport {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: #ffffff;
}

.mockup-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  display: block;
}

.mockup-graphic-stage {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.graphic-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.6;
}

.graphic-brand-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  z-index: 2;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

.graphic-chart-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45px;
  opacity: 0.7;
  pointer-events: none;
}

.case-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.case-meta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.75rem;
}

.case-tag-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  color: var(--admin-accent);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.case-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.case-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.case-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: auto;
  margin-bottom: 1rem;
}

.metric-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0.6rem 0.3rem;
  text-align: center;
}

.metric-chip strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1.2;
}

.metric-chip span {
  display: block;
  font-size: 0.65rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .admin-header {
    padding: 0.85rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .admin-layout {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--admin-border);
    flex-direction: row;
    overflow-x: auto;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .admin-tab-btn {
    white-space: nowrap;
    padding: 0.5rem 0.85rem;
    font-size: 0.85rem;
  }
  .admin-main {
    padding: 1.5rem 1rem;
  }
  .cms-card {
    padding: 1.25rem 1rem;
  }
  .admin-grid-2 {
    grid-template-columns: 1fr;
  }
  .admin-metrics-grid {
    grid-template-columns: 1fr;
  }
  .admin-cases-grid {
    grid-template-columns: 1fr;
  }
  .admin-modal-overlay {
    padding: 0.5rem;
  }
  .admin-toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    text-align: center;
  }
}
