:root{
  --brand:#0b6efd;
  --danger:#d43f3a;
  --success:#2e7d32;
  --warning:#ff9800;
  --bg:#f5f7fb;
  --text:#222;
  --page-pad:16px;
}
body{font-family:Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--text);margin:0;padding:0;overflow-x:hidden}
header{display:flex;align-items:center;gap:16px;padding:16px var(--page-pad);background:white;box-shadow:0 1px 4px rgba(0,0,0,0.06);position:relative}
header img{height:40px}
.waffle-menu-btn{background:transparent;border:none;color:#6c757d;cursor:pointer;padding:8px;border-radius:6px;display:flex;align-items:center;justify-content:center;transition:all 0.2s ease;margin-left:8px}
.waffle-menu-btn:hover{background:#f8f9fa;color:var(--brand)}
.waffle-menu-btn svg{width:24px;height:24px}
.side-menu-toggle{background:transparent;border:none;color:#6c757d;cursor:pointer;padding:8px;border-radius:6px;display:flex;align-items:center;justify-content:center;transition:all 0.2s ease;margin-left:8px;gap:8px;font-size:14px;font-weight:500}
.side-menu-toggle:hover{background:#f8f9fa;color:var(--brand)}
.side-menu-toggle svg{width:24px;height:24px}
.nav-bar{background:white;padding:0 16px;border-bottom:1px solid #dee2e6;display:flex;align-items:center;gap:8px}
.side-menu{position:relative;width:260px;background:white;box-shadow:2px 0 8px rgba(0,0,0,0.1);display:flex;flex-direction:column;overflow-y:auto;border-right:1px solid #dee2e6;flex-shrink:0;transform:translateX(0);transition:transform 0.3s ease;z-index:999}
.side-menu.open{transform:translateX(0)}
/* On mobile, sidebar is fixed and removed from flow */
@media (max-width: 767px) {
  .side-menu {
    position: fixed;
    width: 100%;
    top: 110px;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    flex-shrink: unset;
  }
}
.side-menu-header{padding:12px 16px;border-bottom:1px solid #dee2e6;display:flex;align-items:center;justify-content:flex-end;flex-shrink:0}
.side-menu-header h2{margin:0;color:var(--brand);font-size:16px;font-weight:600}
.side-menu-close{background:#f8f9fa;border:1px solid #dee2e6;color:#6c757d;cursor:pointer;padding:8px;display:flex;align-items:center;justify-content:center;border-radius:4px;transition:all 0.2s ease;width:36px;height:36px}
.side-menu-close:hover{background:#e9ecef;color:var(--danger);border-color:#adb5bd}
.side-menu-nav{display:flex;flex-direction:column;padding:8px;gap:4px;flex:1}
.side-menu-item{background:transparent;border:none;color:#333;padding:12px 16px;border-radius:6px;cursor:pointer;font-size:14px;font-weight:500;text-align:left;display:flex;align-items:center;gap:12px;transition:all 0.2s ease;white-space:nowrap}
.side-menu-item:hover{background:#f8f9fa;color:var(--brand)}
.side-menu-item.active{background:#e3f2fd;color:var(--brand);font-weight:600}
.side-menu-item svg{min-width:20px;min-height:20px}
.side-menu-group{display:flex;flex-direction:column}
.side-menu-parent{padding:12px 16px;}
.side-menu-arrow{transition:transform 0.2s ease;width:16px;height:16px;margin-left:auto;}
.side-menu-arrow.expanded{transform:rotate(90deg)}
.side-menu-submenu{flex-direction:column;background:#f8f9fa;border-radius:0 0 6px 6px}
/* Backdrop when menu is open */
body.side-menu-open::before{content:'';position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.3);z-index:998;animation:fadeIn 0.3s ease}
main{padding:var(--page-pad);width:100%;margin:0;min-height:100vh;max-height:100vh;overflow-y:auto;box-sizing:border-box}
/* Content area (flex wrapper for sections) */
main > div:last-of-type {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
section{background:white;margin:0;padding:var(--page-pad);border-bottom:1px solid #dee2e6;box-shadow:none}
section:last-of-type {
  border-bottom: none;
}
#list{padding:0}
#list table{width:100%;border-collapse:collapse;font-size:13px}
#list table th{text-align:left;padding:8px;border-bottom:2px solid #ddd;position:sticky;top:0;background:white;font-weight:600}
#list table td{padding:8px;border-bottom:1px solid #eee}
#list table td a{color:var(--brand);text-decoration:none}
#list table td a:hover{text-decoration:underline}
#list table tbody tr:hover{background:#f8f9fa}

#supportOpenTicketsSection{
  border:1px solid #dde3ee;
  border-radius:8px;
  background:#f8fafc;
  padding:12px;
}

#supportOpenTicketsSection .support-open-tickets-wrap{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border:1px solid #d9e1ef;
  border-radius:6px;
  background:#fff;
}

#supportOpenTicketsTable{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  font-size:12px;
  min-width:760px;
}

#supportOpenTicketsTable thead tr{
  background:linear-gradient(180deg,#eef5ff 0%,#e3f0ff 100%);
}

#supportOpenTicketsTable th{
  text-align:left;
  padding:10px 8px;
  border-bottom:1px solid #c8d8f0;
  color:#0b4ea2;
  font-weight:700;
  font-size:11px;
  letter-spacing:0.03em;
  text-transform:uppercase;
}

#supportOpenTicketsTable tbody tr:hover{
  background:#f5f9ff;
}

#supportOpenTicketsTable tbody tr:last-child .support-open-ticket-cell,
#supportOpenTicketsTable tbody tr:last-child .support-open-ticket-state{
  border-bottom:none;
}

.support-open-ticket-cell{
  padding:8px;
  border-bottom:1px solid #edf1f7;
  color:#2a2f37;
}

.support-open-ticket-id,
.support-open-ticket-date{
  white-space:nowrap;
}

.support-open-ticket-subject{
  color:#1f2937;
}

.support-open-ticket-priority{
  font-weight:700;
  text-transform:capitalize;
}

.support-open-ticket-state{
  padding:10px;
  color:#5f6b7a;
  border-bottom:1px solid #edf1f7;
}

.support-open-ticket-state-error{
  color:#d43f3a;
}

#list li{display:flex;align-items:center;justify-content:space-between;padding:12px;background:var(--bg);margin-bottom:8px;border-radius:6px;border-left:4px solid var(--brand)}
#list li div:first-child{flex:1}
#list li div:last-child{display:flex;gap:8px}
.dot{width:14px;height:14px;border-radius:50%;display:inline-block;margin-right:10px}
.ok{background:var(--success)}
.bad{background:var(--danger)}
.status-icon{width:20px;height:20px;display:inline-block;vertical-align:middle;margin-right:10px}
.status-icon svg{width:20px;height:20px;display:block}
.status-healthy svg{fill:var(--success)}
.status-degraded svg{fill:var(--warning)}
.status-partial svg{fill:#ffb300}
.status-major svg{fill:var(--danger)}
button{background:var(--brand);color:white;border:none;padding:8px 12px;border-radius:6px;cursor:pointer;font-size:14px;transition:background 0.2s ease}
button:hover{background:#0956d4}
#refresh{display:inline-flex;align-items:center;gap:8px}
#refresh svg{width:16px;height:16px}
.beta-badge{background:linear-gradient(135deg,#ff7a18 0%,#ffb347 100%);color:white;font-weight:700;text-transform:uppercase;font-size:12px;letter-spacing:0.5px;padding:6px 12px;border-radius:999px;box-shadow:0 2px 6px rgba(0,0,0,0.15);position:absolute;top:10px;right:16px;display:inline-flex;align-items:center;gap:6px}
.beta-badge::before{content:"⧉";font-size:11px;opacity:0.9}
#tabBar{display:flex;gap:2px;margin:16px 0 0 0;padding:0 16px;background:transparent;border-bottom:2px solid #dee2e6}
#tabBar > div{position:relative}
#tabBar button[id^="tab"]{background:transparent;color:#6c757d;border:none;border-top-left-radius:8px;border-top-right-radius:8px;padding:10px 20px;font-size:14px;font-weight:500;position:relative;transition:all 0.2s ease;margin-bottom:-2px;border-bottom:2px solid transparent}
#tabBar button[id^="tab"]:hover{background:#f8f9fa;color:var(--text)}
#tabBar button[id^="tab"][aria-pressed="true"]{background:white;color:var(--brand);border-bottom:2px solid white;font-weight:600;box-shadow:0 -2px 4px rgba(0,0,0,0.05)}
.info-icon{background:none!important;border:none;cursor:help;font-size:14px;color:#6c757d;padding:0 4px;margin-left:-8px;opacity:0.7;transition:opacity 0.2s}
.info-icon:hover{opacity:1;color:var(--brand)}
form input{padding:10px;margin-right:8px;border:1px solid #ccc;border-radius:4px;font-size:14px}
.slo-item{padding:12px;margin-bottom:8px;border-radius:6px;border-left:4px solid}
.slo-item.healthy{border-left-color:var(--success);background:#e8f5e9}
.slo-item.degraded{border-left-color:var(--danger);background:#ffebee}
.incident{padding:12px;margin-bottom:8px;border-radius:6px;border-left:4px solid}
.incident.high{border-left-color:var(--danger);background:#ffebee}
.incident.medium{border-left-color:var(--warning);background:#fff3e0}
.incident.low{border-left-color:var(--brand);background:#e3f2fd}
.incident small{display:block;margin-top:4px;color:#666}
.availability-test{padding:12px;margin-bottom:8px;border-radius:6px;border-left:4px solid}
.availability-test.pass{border-left-color:var(--success);background:#e8f5e9}
.availability-test.fail{border-left-color:var(--danger);background:#ffebee}
#historyBody pre{background:var(--bg);padding:12px;border-radius:4px;overflow-x:auto;font-size:12px}
h2{margin-top:0;color:var(--brand)}
h3{margin-top:0;color:var(--brand)}

.current-po-panel {
  border: 1px solid #ffcf6e;
  border-left: 5px solid #d18a00;
  background: linear-gradient(180deg, #fff8df 0%, #fff1c6 100%);
  border-radius: 8px;
  padding: 14px 16px;
}

.po-range-shell {
  border: 1px solid #d6dbe6;
  border-radius: 6px;
  background: #ffffff;
  padding: 10px;
}

.po-range-header {
  margin-bottom: 8px;
}

.po-range-title {
  font-size: 13px;
  font-weight: 700;
  color: #2f3b52;
}

.po-range-subtitle {
  margin-top: 2px;
  color: #6b7280;
  font-size: 12px;
}

.po-quick-ranges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.po-range-btn {
  background: #f1f4f9;
  color: #334155;
  border: 1px solid #ced6e3;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.po-range-btn:hover {
  background: #e7edf7;
  border-color: #9fb3d3;
}

.po-range-btn.active {
  background: #0b6efd;
  color: #ffffff;
  border-color: #0b6efd;
}

.po-datetime-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.po-datetime-wrap input[type="datetime-local"] {
  padding-right: 44px !important;
}

.po-picker-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #cdd5e1;
  background: #ffffff;
  color: #334155;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 14px;
  line-height: 1;
}

.po-picker-btn:hover {
  background: #f8fafc;
}

.po-range-summary {
  margin-top: -2px;
  font-size: 12px;
  color: #475569;
  font-weight: 600;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Header adjustments */
  header {
    flex-wrap: wrap;
    padding: 12px;
    gap: 12px;
  }
  
  header h1 {
    font-size: 18px;
    flex: 1;
    min-width: 0;
  }
  
  header img {
    height: 32px;
  }

  .waffle-menu-btn {
    margin-left: 0;
    order: -1;
  }

  .beta-badge {
    position: static;
    align-self: flex-start;
    margin-left: auto;
    margin-top: -6px;
    font-size: 11px;
    padding: 5px 10px;
  }
  
  #authStatus {
    width: 100%;
    margin-left: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Main content */
  main {
    padding: 0;
    flex-direction: column;
  }
  
  main > div:last-of-type {
    padding: 0;
  }
  
  section {
    padding: 12px;
    margin-bottom: 0;
    border-bottom: 1px solid #dee2e6;
  }
  
  /* Tab bar - horizontal scroll on mobile */
  #tabBar {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 8px;
    margin: 12px 0 0 0;
    white-space: nowrap;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  
  #tabBar::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  
  #tabBar > div {
    display: inline-flex;
  }
  
  #tabBar button[id^="tab"] {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
  
  .info-icon {
    display: none !important; /* Hide info icons on mobile */
  }
  
  /* Side menu mobile adjustments */
  .nav-bar {
    padding: 8px 12px;
  }

  /* Show hamburger menu on mobile */
  .side-menu-toggle {
    display: flex !important;
  }

  .side-menu-toggle span {
    display: inline;
  }

  /* Hide sidebar toggle button on mobile */
  .sidebar-toggle-btn {
    display: none !important;
  }
  
  .side-menu-header {
    display: flex !important;
    padding: 12px 16px;
  }
  
  .side-menu-header h2 {
    font-size: 14px;
  }
  
  .side-menu-item {
    padding: 10px 16px;
    font-size: 13px;
    gap: 12px;
  }
  
  .side-menu-item svg {
    min-width: 18px;
    min-height: 18px;
  }
  
  /* Waffle menu mobile adjustments */
  .waffle-menu-content {
    width: 95%;
    max-height: 85vh;
  }
  
  .waffle-menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    padding: 12px;
  }
  
  .waffle-menu-item {
    padding: 16px 12px;
  }
  
  .waffle-menu-item span {
    font-size: 13px;
  }
  
  .waffle-menu-item small {
    font-size: 10px;
  }
  
  /* Overview grid - single column on mobile */
  #overview > div[style*="grid"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Project cards - single column */
  #overviewProjectsContainer {
    grid-template-columns: 1fr !important;
  }
  
  /* Forms - stack inputs */
  form {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  form input {
    width: 100%;
    box-sizing: border-box;
    margin-right: 0;
  }
  
  form button {
    width: 100%;
    padding: 12px;
  }
  
  /* Tables - responsive scroll */
  #list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  #list table {
    min-width: 600px;
    font-size: 12px;
  }
  
  #list table th,
  #list table td {
    padding: 6px;
  }

  #supportOpenTicketsSection {
    padding: 10px;
  }

  #supportOpenTicketsTable {
    min-width: 690px;
    font-size: 11px;
  }

  #supportOpenTicketsTable th {
    padding: 8px 6px;
    font-size: 10px;
  }

  .support-open-ticket-cell,
  .support-open-ticket-state {
    padding: 7px 6px;
  }
  
  /* Incident calendar - horizontal scroll */
  #incidents table {
    font-size: 11px;
  }
  
  #incidents th,
  #incidents td {
    padding: 4px 2px !important;
    min-width: 25px !important;
  }
  
  /* SSL table - responsive */
  #sslCerts table {
    font-size: 11px;
  }
  
  /* Modals - full screen on mobile */
  #loginModal > div,
  #editUrlModal > div,
  #incidentDetailsModal > div {
    width: 95% !important;
    max-width: 95% !important;
    max-height: 90vh !important;
    margin: auto;
  }

  /* Buttons - touch-friendly size */
  button {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 15px;
  }
  
  /* Admin URL list - responsive cards */
  #adminUrlList li {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }
  
  #adminUrlList li > div:last-child {
    width: 100%;
    justify-content: stretch;
  }
  
  #adminUrlList li button {
    flex: 1;
  }
  
  /* SLO and incident items */
  .slo-item,
  .incident {
    font-size: 13px;
    padding: 10px;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  main {
    max-width: 100%;
    padding: 16px;
  }
  
  #overview > div[style*="grid"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  #overviewProjectsContainer {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Touch-friendly improvements for all devices */
a, button, [role="button"] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

/* Refresh button loading spinner (global) */
#refresh.loading {
  position: relative;
  cursor: wait;
}

#refresh.loading::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: spin-refresh 0.8s linear infinite;
}

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

/* Ensure text is readable */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent zoom on input focus (iOS) */
input, select, textarea {
  font-size: 16px;
}

/* Global loading overlay */
#globalLoadingOverlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
  z-index: 9999;
}

#globalLoadingOverlay.visible {
  display: flex;
}

#globalLoadingOverlay .loading-card {
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
  border: 1px solid #e5e7eb;
}

#globalLoadingOverlay .loading-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white center/contain no-repeat url('caa_in_progress.gif');
  border: 2px solid #00529b;
  animation: spin-logo 1.2s linear infinite;
}

#globalLoadingOverlay .loading-text {
  font-weight: 600;
  color: #0b6efd;
  font-size: 15px;
}

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

/* Desktop Responsive: Show sidebar permanently */
@media (min-width: 769px) {
  .nav-bar {
    display: none !important;
  }
  
  .side-menu {
    position: relative !important;
    top: auto !important;
    transform: translateX(0) !important;
    width: 260px;
    box-shadow: none;
    border-right: 1px solid #dee2e6;
    flex-shrink: 0;
    transition: width 0.3s ease;
    visibility: visible;
    display: flex !important;
    flex-direction: column;
  }
  
  .side-menu.collapsed {
    width: 0 !important;
    min-width: 0;
    overflow: hidden;
    border-right: none;
    padding: 0 !important;
    visibility: hidden;
    display: none !important;
  }
  
  .side-menu:not(.collapsed) {
    visibility: visible;
    width: 260px !important;
    display: flex !important;
  }
  
  body.sidebar-collapsed {
    grid-template-columns: 1fr;
  }
  
  body.sidebar-collapsed main {
    grid-column: 1;
  }
  
  .side-menu.collapsed .side-menu-nav {
    display: none;
  }
  
  .side-menu.collapsed .side-menu-header {
    padding: 0;
    border: none;
    display: none;
  }
  
  .side-menu-header {
    display: none !important;
  }
  
  .side-menu.collapsed .side-menu-header h2 {
    display: none;
  }
  
  /* Hide sidebar collapse button by default (mobile) */
  .sidebar-collapse-btn {
    display: none !important;
  }
  
  header {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  
  main {
    grid-column: 2;
    grid-row: 2;
    overflow-y: auto;
  }
  
  .side-menu {
    grid-column: 1;
    grid-row: 2;
    overflow-y: auto;
  }
  
  footer {
    grid-column: 1 / -1;
    grid-row: 3;
  }
  
  .sidebar-toggle-btn {
    position: fixed !important;
    left: 0 !important;
    top: 150px !important;
    width: 48px !important;
    height: 48px !important;
    background: #0b6efd !important;
    border: 2px solid #fff !important;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.3) !important;
    padding: 12px !important;
    cursor: pointer !important;
    color: white !important;
    visibility: hidden;
    opacity: 0;
    z-index: 9999 !important;
    transition: all 0.2s ease;
    display: none !important;
    border-radius: 0 8px 8px 0 !important;
  }
  
  .sidebar-toggle-btn:hover {
    background: #0956d4 !important;
    box-shadow: 3px 3px 12px rgba(0,0,0,0.4) !important;
  }
  
  .sidebar-toggle-btn svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  
  #globalLoadingOverlay {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
  }
  
  body.side-menu-open::before {
    display: none;
  }
}

/* Desktop Responsive Styles */
@media (min-width: 769px) {
  .side-menu {
    position: relative !important;
    width: 260px !important;
    left: auto !important;
    bottom: auto !important;
    transform: translateX(0) !important;
    flex-shrink: 0;
    border-right: 1px solid #dee2e6;
  }
  
  /* Hide hamburger menu on desktop (sidebar always visible) */
  .side-menu-toggle {
    display: none !important;
  }

  .side-menu-toggle span {
    display: none;
  }

  main > div:last-of-type {
    padding: 0;
  }
  
  section {
    border-bottom: 1px solid #dee2e6;
    margin: 0;
  }
  .sidebar-toggle-btn {
    display: none !important;
  }
  
  /* Show toggle button when sidebar is collapsed on desktop */
  .side-menu.collapsed ~ .sidebar-toggle-btn {
    display: block !important;
  }
  
  .side-menu-close {
    display: none !important;
  }
  
  main {
    flex-direction: row;
  }

  /* Desktop: Show sidebar collapse button */
  .sidebar-collapse-btn {
    display: flex !important;
    background: #007bff;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 8px;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
  }
  
  .sidebar-collapse-btn:hover {
    background: #0056b3;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.4);
  }
  
  .sidebar-collapse-btn svg {
    width: 22px;
    height: 22px;
  }

  .sidebar-collapse-btn #collapseArrow {
    transition: transform 0.3s ease;
    transform-origin: center;
  }

  /* Arrow points right when sidebar is visible (to collapse it) */
  .sidebar-collapse-btn #collapseArrow {
    transform: rotate(0deg);
  }

  /* Arrow points left when sidebar is collapsed (to expand it) */
  .sidebar-collapsed .sidebar-collapse-btn #collapseArrow {
    transform: rotate(180deg);
  }

  /* Desktop layout with sidebar */
  body {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
  }

  #controls {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: var(--page-pad);
  }
}

