@import "https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap";
/* [project]/app/globals.css [app-client] (css) */
:root {
  --ink: #161c2a;
  --ink-strong: #0d111b;
  --ink-soft: #556070;
  --muted: #7a8391;
  --canvas: #eaecee;
  --surface: #fff;
  --surface-muted: #f5f6f7;
  --line: #e0e3e7;
  --line-strong: #cfd5dc;
  --accent: #e8462a;
  --accent-soft: #fff0ec;
  --data: #6c9bd9;
  --data-soft: #eff5fd;
  --success: #1f7a46;
  --success-soft: #e8f5ee;
  --warning: #9a6412;
  --warning-soft: #fff5de;
  --danger: #c33a21;
  --danger-soft: #fff0ed;
  --info: #2e6bb8;
  --shadow-card: 0 1px 2px #1018280a,
    0 16px 48px -16px #10182824;
  --shadow-pop: 0 24px 48px -16px #1018283d;
  --radius-card: 32px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --radius-pill: 9999px;
}

* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #c2c9d2 transparent;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background: var(--canvas);
  overflow-x: hidden;
}

body {
  background: var(--canvas);
  min-width: 320px;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: Plus Jakarta Sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  border-radius: var(--radius-pill);
  background: #c2c9d2 padding-box padding-box;
  border: 3px solid #0000;
  min-height: 42px;
}

::-webkit-scrollbar-thumb:hover {
  background: #929eac padding-box padding-box;
}

::-webkit-scrollbar-thumb:active {
  background: var(--accent);
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: none;
}

.code-box, .code-box * {
  scrollbar-color: #5c6878 var(--ink);
}

.code-box::-webkit-scrollbar-track {
  background: var(--ink);
}

.code-box::-webkit-scrollbar-thumb {
  border-color: var(--ink);
  background: #5c6878;
}

.modal, .drawer-body {
  scrollbar-color: #c2c9d2 transparent;
  scrollbar-gutter: stable;
}

.shell {
  overflow-x: clip;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .58;
}

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px #e8462a2e;
}

.page-loading {
  min-height: 100vh;
  color: var(--ink-soft);
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  display: flex;
}

.loading-dot {
  background: var(--accent);
  border-radius: 50%;
  width: 9px;
  height: 9px;
  animation: 1.1s ease-in-out infinite pulse-dot;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: .45;
    transform: scale(.72);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.shell {
  background: radial-gradient(circle at 92% -8%, #6c9bd926, transparent 27rem),
    var(--canvas);
  min-height: 100vh;
}

.sidebar {
  z-index: 20;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #ffffffdb;
  border-right: 1px solid #cfd5dcc2;
  flex-direction: column;
  width: 248px;
  padding: 24px 16px;
  display: flex;
  position: fixed;
  inset: 0 auto 0 0;
}

.brand {
  color: var(--ink);
  align-items: center;
  gap: 11px;
  padding: 4px 12px 28px;
  text-decoration: none;
  display: inline-flex;
}

.brand-mark {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 7px 14px #161c2a2e;
}

.brand-mark:before, .brand-mark:after {
  content: "";
  border: 2px solid var(--accent);
  border-radius: 6px;
  width: 17px;
  height: 17px;
  position: absolute;
  transform: rotate(45deg);
}

.brand-mark:before {
  top: -9px;
  left: 5px;
}

.brand-mark:after {
  bottom: 5px;
  right: -9px;
}

.brand-mark span {
  z-index: 1;
  background: var(--accent);
  border-radius: 3px;
  width: 8px;
  height: 8px;
  display: block;
  position: relative;
}

.brand-copy {
  flex-direction: column;
  line-height: 1.1;
  display: flex;
}

.brand-name {
  letter-spacing: -.04em;
  font-size: 17px;
  font-weight: 800;
}

.brand-tagline {
  color: var(--muted);
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
}

.sidebar-section-label {
  color: #a1a8b2;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 16px 12px 8px;
  font-size: 12px;
  font-weight: 800;
}

.nav-list {
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.nav-link {
  min-height: 44px;
  color: var(--ink-soft);
  border-radius: 14px;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .18s, color .18s, transform .18s;
  display: flex;
  position: relative;
}

.nav-link:hover {
  background: var(--surface-muted);
  color: var(--ink);
  transform: translateX(2px);
}

.nav-link.active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 18px #161c2a29;
}

.nav-link.active:after {
  background: var(--accent);
  content: "";
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  right: 9px;
}

.nav-icon {
  place-items: center;
  width: 20px;
  display: grid;
}

.sidebar-footer {
  margin-top: auto;
  padding: 16px 8px 2px;
}

.support-card {
  background: var(--surface-muted);
  border-radius: 22px;
  padding: 16px;
}

.support-icon {
  background: var(--accent-soft);
  width: 29px;
  height: 29px;
  color: var(--accent);
  border-radius: 10px;
  place-items: center;
  margin-bottom: 11px;
  display: grid;
}

.support-title {
  color: var(--ink);
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.support-copy {
  color: var(--muted);
  margin: 4px 0 12px;
  font-size: 12px;
  line-height: 1.5;
}

.support-link {
  color: var(--ink);
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
}

.support-link:hover {
  color: var(--accent);
}

.main-column {
  min-width: 0;
  min-height: 100vh;
  margin-left: 248px;
}

.topbar {
  z-index: 15;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #eaeceedb;
  border-bottom: 1px solid #cfd5dc80;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  height: 76px;
  padding: 0 40px;
  display: flex;
  position: sticky;
  top: 0;
}

.mobile-brand {
  display: none;
}

.breadcrumbs {
  color: var(--muted);
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
}

.breadcrumb-current {
  color: var(--ink);
  font-weight: 800;
}

.topbar-actions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.search-box {
  border-radius: var(--radius-pill);
  width: min(300px, 27vw);
  height: 40px;
  color: var(--muted);
  background: #ffffffad;
  border: 1px solid #cfd5dcd1;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  display: flex;
}

.search-box input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: none;
  border: 0;
  outline: 0;
  font-size: 13px;
}

.search-box input::placeholder {
  color: #9ba3ae;
}

.mobile-search-box {
  display: none;
}

.icon-button {
  width: 40px;
  height: 40px;
  color: var(--ink-soft);
  background: #ffffffad;
  border: 1px solid #cfd5dcd1;
  border-radius: 50%;
  place-items: center;
  transition: transform .18s, background .18s, color .18s;
  display: inline-grid;
}

.icon-button:hover {
  color: var(--ink);
  background: #fff;
  transform: translateY(-1px);
}

.notification-button {
  position: relative;
}

.notification-button:after {
  border: 2px solid var(--canvas);
  background: var(--accent);
  content: "";
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 8px;
  right: 8px;
}

.profile-trigger {
  color: var(--ink);
  background: none;
  border: 0;
  align-items: center;
  gap: 9px;
  padding: 3px 0 3px 6px;
  display: flex;
}

.avatar {
  color: #fff;
  letter-spacing: -.04em;
  background: linear-gradient(145deg, #f4b089, #c65b46);
  border-radius: 12px;
  place-items: center;
  width: 35px;
  height: 35px;
  font-size: 13px;
  font-weight: 800;
  display: grid;
}

.profile-copy {
  flex-direction: column;
  align-items: flex-start;
  min-width: 80px;
  line-height: 1.2;
  display: flex;
}

.profile-name {
  font-size: 13px;
  font-weight: 800;
}

.profile-role {
  color: var(--muted);
  margin-top: 3px;
  font-size: 11px;
}

.profile-chevron {
  color: var(--muted);
}

.profile-menu-wrap {
  position: relative;
}

.profile-menu {
  z-index: 30;
  border: 1px solid var(--line);
  width: 190px;
  box-shadow: var(--shadow-pop);
  background: #fff;
  border-radius: 16px;
  padding: 7px;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
}

.profile-menu button {
  width: 100%;
  color: var(--ink-soft);
  text-align: left;
  background: none;
  border: 0;
  border-radius: 10px;
  align-items: center;
  gap: 9px;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.profile-menu button:hover {
  background: var(--surface-muted);
  color: var(--ink);
}

.profile-menu button.danger-item:hover {
  background: var(--danger-soft);
  color: var(--danger);
}

.page-content {
  width: min(100%, 1510px);
  margin: 0 auto;
  padding: 34px 40px 60px;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: .17em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
}

.page-title {
  color: var(--ink-strong);
  letter-spacing: -.06em;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  line-height: 1.13;
}

.page-subtitle {
  max-width: 610px;
  color: var(--ink-soft);
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.65;
}

.heading-row {
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 24px;
  display: flex;
}

.heading-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.demo-ribbon {
  border-radius: var(--radius-pill);
  color: #a45439;
  background: #fff9f6c2;
  border: 1px solid #f1d7cb;
  align-items: center;
  gap: 7px;
  min-height: 29px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.demo-ribbon span {
  background: var(--accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 4px #e8462a1f;
}

.button {
  border-radius: var(--radius-pill);
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s, border-color .18s;
  display: inline-flex;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 16px #161c2a21;
}

.button-primary:hover:not(:disabled) {
  background: #252d3f;
  box-shadow: 0 10px 20px #161c2a30;
}

.button-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 16px #e8462a2e;
}

.button-accent:hover:not(:disabled) {
  background: #d73d23;
  box-shadow: 0 10px 20px #e8462a3d;
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: #ffffffb8;
}

.button-secondary:hover:not(:disabled) {
  border-color: var(--ink);
  background: #fff;
}

.button-ghost {
  color: var(--ink-soft);
  background: none;
}

.button-ghost:hover:not(:disabled) {
  background: var(--surface-muted);
  color: var(--ink);
}

.button-small {
  height: 34px;
  padding: 0 12px;
  font-size: 12px;
}

.card {
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  border: 1px solid #fffc;
}

.hero-card {
  background: var(--ink);
  color: #fff;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr);
  gap: 24px;
  min-height: 246px;
  margin-bottom: 24px;
  padding: 32px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero-card:before {
  content: "";
  border: 1px solid #ffffff1f;
  border-radius: 50%;
  width: 420px;
  height: 420px;
  position: absolute;
  bottom: -170px;
  right: -90px;
  box-shadow: 0 0 0 36px #ffffff09, 0 0 0 72px #ffffff08, 0 0 0 108px #ffffff06;
}

.hero-card:after {
  content: "";
  background: linear-gradient(#0000, #ffffff1f, #0000);
  width: 1px;
  height: 390px;
  position: absolute;
  top: -100px;
  left: 38%;
  transform: rotate(28deg);
}

.hero-copy, .hero-metrics {
  z-index: 1;
  position: relative;
}

.hero-copy {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.hero-kicker {
  color: #ffffff8f;
  letter-spacing: .12em;
  text-transform: uppercase;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.hero-live-dot {
  background: #58d18b;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 5px #58d18b1f;
}

.hero-title {
  letter-spacing: -.065em;
  max-width: 440px;
  margin: 22px 0 0;
  font-size: clamp(27px, 3.1vw, 38px);
  font-weight: 700;
  line-height: 1.12;
}

.hero-description {
  color: #ffffffa1;
  max-width: 440px;
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.hero-footnote {
  color: #ffffff70;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 12px;
  display: flex;
}

.hero-footnote strong {
  color: #ffffffe6;
  font-weight: 700;
}

.hero-metrics {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 10px;
  display: grid;
}

.hero-metric {
  background: #ffffff14;
  border: 1px solid #ffffff14;
  border-radius: 20px;
  min-height: 86px;
  padding: 15px 16px;
}

.hero-metric:nth-child(2) {
  background: var(--accent);
  border-color: var(--accent);
}

.hero-metric:nth-child(3) {
  background: #6c9bd933;
  border-color: #6c9bd92e;
}

.hero-metric-label {
  color: #ffffff94;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.hero-metric:nth-child(2) .hero-metric-label {
  color: #ffffffb8;
}

.hero-metric-value {
  letter-spacing: -.07em;
  margin-top: 7px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.hero-metric-note {
  color: #ffffff80;
  margin-top: 7px;
  font-size: 11px;
}

.hero-metric:nth-child(2) .hero-metric-note {
  color: #ffffffbf;
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  display: grid;
}

.metric-card {
  min-height: 148px;
  padding: 21px;
}

.metric-card-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  display: flex;
}

.metric-icon {
  background: var(--surface-muted);
  width: 32px;
  height: 32px;
  color: var(--ink);
  border-radius: 11px;
  place-items: center;
  display: grid;
}

.metric-icon.orange {
  background: var(--accent-soft);
  color: var(--accent);
}

.metric-icon.blue {
  background: var(--data-soft);
  color: var(--info);
}

.metric-icon.green {
  background: var(--success-soft);
  color: var(--success);
}

.metric-trend {
  border-radius: var(--radius-pill);
  background: var(--success-soft);
  color: var(--success);
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
}

.metric-label {
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 17px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.metric-value {
  color: var(--ink-strong);
  letter-spacing: -.07em;
  margin-top: 3px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.metric-value small {
  color: var(--muted);
  letter-spacing: -.02em;
  margin-left: 3px;
  font-size: 14px;
  font-weight: 600;
}

.metric-bottom {
  color: var(--muted);
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  font-size: 12px;
  display: flex;
}

.content-grid {
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, .82fr);
  align-items: start;
  gap: 24px;
  display: grid;
}

.stack {
  gap: 24px;
  display: grid;
}

.panel {
  padding: 24px;
}

.panel-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px 16px;
  margin-bottom: 21px;
  display: flex;
}

.panel-title {
  color: var(--ink-strong);
  letter-spacing: -.035em;
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.panel-caption {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.5;
}

.text-button {
  color: var(--accent);
  background: none;
  border: 0;
  align-items: center;
  gap: 5px;
  padding: 4px 0;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.text-button:hover {
  color: #c9321d;
}

.fleet-toolbar {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 15px;
  display: flex;
}

.segmented-control {
  border-radius: var(--radius-pill);
  background: var(--surface-muted);
  align-items: center;
  gap: 3px;
  padding: 3px;
  display: inline-flex;
}

.segmented-control button {
  border-radius: var(--radius-pill);
  height: 29px;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0 11px;
  font-size: 11px;
  font-weight: 800;
}

.segmented-control button.active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 6px #10182814;
}

.fleet-total {
  color: var(--muted);
  white-space: nowrap;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}

.container-table {
  border-collapse: collapse;
  width: 100%;
}

.container-table th {
  border-bottom: 1px solid var(--line);
  color: #9da5af;
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
  padding: 0 8px 11px;
  font-size: 11px;
  font-weight: 800;
}

.container-table th:first-child, .container-table td:first-child {
  padding-left: 0;
}

.container-table th:last-child, .container-table td:last-child {
  text-align: right;
  padding-right: 0;
}

.container-table td {
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: middle;
  padding: 15px 8px;
  font-size: 12px;
}

.container-table tbody tr {
  transition: background .16s;
}

.container-table tbody tr:hover {
  background: #fbfbfc;
}

.container-table tbody tr:last-child td {
  border-bottom: 0;
  padding-bottom: 4px;
}

.container-cell {
  align-items: center;
  gap: 10px;
  min-width: 150px;
  display: flex;
}

.container-icon {
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  flex: none;
  place-items: center;
  width: 34px;
  height: 34px;
  display: grid;
}

.container-icon.stopped {
  background: var(--surface-muted);
  color: var(--muted);
}

.container-name {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.container-subname {
  color: #9da5af;
  margin-top: 2px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.status-badge {
  border-radius: var(--radius-pill);
  align-items: center;
  gap: 6px;
  min-height: 23px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
}

.status-badge.running {
  background: var(--success-soft);
  color: var(--success);
}

.status-badge.stopped {
  background: var(--surface-muted);
  color: var(--muted);
}

.status-dot {
  background: currentColor;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.status-badge.running .status-dot {
  box-shadow: 0 0 0 3px #1f7a461f;
}

.ip-address, .image-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.image-label {
  color: var(--ink-soft);
}

.snapshots {
  color: var(--muted);
  align-items: center;
  gap: 5px;
  display: inline-flex;
}

.row-action {
  width: 28px;
  height: 28px;
  color: var(--muted);
  background: none;
  border: 0;
  border-radius: 9px;
  place-items: center;
  display: inline-grid;
}

.row-action:hover {
  background: var(--surface-muted);
  color: var(--ink);
}

.empty-state {
  border: 1px dashed var(--line-strong);
  min-height: 180px;
  color: var(--muted);
  text-align: center;
  border-radius: 18px;
  place-items: center;
  gap: 6px;
  padding: 24px;
  display: grid;
}

.empty-state strong {
  color: var(--ink);
  font-size: 12px;
}

.chart-card {
  min-height: 312px;
}

.chart-legend {
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 7px 13px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.legend-item {
  align-items: center;
  gap: 5px;
  display: inline-flex;
}

.legend-swatch {
  background: var(--data);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.legend-swatch.orange {
  background: var(--accent);
}

.chart-wrap {
  height: 210px;
  margin: 8px -3px -3px;
  position: relative;
}

.chart-svg {
  width: 100%;
  height: 174px;
  display: block;
  overflow: visible;
}

.chart-grid-line {
  stroke: #edf0f2;
  stroke-width: 1px;
}

.chart-area {
  fill: url("#chart-fill");
}

.chart-line {
  fill: none;
  stroke: var(--data);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5px;
}

.chart-line-secondary {
  fill: none;
  stroke: var(--accent);
  stroke-dasharray: 4 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7px;
}

.chart-point {
  stroke: #fff;
  stroke-width: 2px;
}

.chart-labels {
  color: #9da5af;
  text-align: center;
  grid-template-columns: repeat(7, 1fr);
  padding: 5px 10px 0;
  font-size: 11px;
  font-weight: 700;
  display: grid;
}

.chart-callout {
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  flex-direction: column;
  padding: 8px 10px;
  font-size: 11px;
  display: flex;
  position: absolute;
  top: 6px;
  left: 58%;
  box-shadow: 0 8px 16px #161c2a29;
}

.chart-callout strong {
  letter-spacing: -.04em;
  font-size: 14px;
}

.chart-callout span {
  color: #ffffff94;
  margin-top: 2px;
}

.chart-callout:after {
  background: var(--ink);
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -5px;
  left: 17px;
  transform: rotate(45deg);
}

.activity-list {
  gap: 0;
  display: grid;
}

.activity-item {
  grid-template-columns: 29px minmax(0, 1fr) auto;
  gap: 11px;
  padding: 0 0 18px;
  display: grid;
  position: relative;
}

.activity-item:not(:last-child):before {
  background: var(--line);
  content: "";
  width: 1px;
  position: absolute;
  top: 27px;
  bottom: 2px;
  left: 14px;
}

.activity-icon {
  z-index: 1;
  background: var(--surface-muted);
  width: 29px;
  height: 29px;
  color: var(--muted);
  border-radius: 10px;
  place-items: center;
  display: grid;
  position: relative;
}

.activity-icon.success {
  background: var(--success-soft);
  color: var(--success);
}

.activity-icon.accent {
  background: var(--accent-soft);
  color: var(--accent);
}

.activity-icon.info {
  background: var(--data-soft);
  color: var(--info);
}

.activity-title {
  color: var(--ink);
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 800;
}

.activity-description {
  color: var(--muted);
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.45;
}

.activity-time {
  color: #a3aab4;
  white-space: nowrap;
  padding-top: 4px;
  font-size: 11px;
}

.uptime-card {
  background: linear-gradient(135deg, #fff, #f7fbff);
  min-height: 150px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.uptime-card:after {
  content: "";
  border: 1px solid #6c9bd92e;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  position: absolute;
  bottom: -65px;
  right: -45px;
  box-shadow: 0 0 0 20px #6c9bd90f, 0 0 0 42px #6c9bd90b;
}

.uptime-content {
  z-index: 1;
  position: relative;
}

.uptime-value {
  color: var(--ink-strong);
  letter-spacing: -.08em;
  margin-top: 7px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.uptime-value span {
  color: var(--success);
  letter-spacing: 0;
  margin-left: 5px;
  font-size: 13px;
  font-weight: 800;
}

.uptime-bar {
  gap: 3px;
  margin-top: 17px;
  display: flex;
}

.uptime-bar i {
  background: #b7d6c2;
  border-radius: 5px;
  flex: 1;
  height: 6px;
  display: block;
}

.uptime-bar i:nth-last-child(-n+3) {
  background: #dde4e9;
}

.uptime-note {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 11px;
}

.error-banner {
  color: var(--danger);
  background: #fff6f4;
  border: 1px solid #f1d1ca;
  border-radius: 14px;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.success-banner {
  color: var(--success);
  background: #f3fbf6;
  border: 1px solid #cce5d6;
  border-radius: 14px;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.modal-backdrop {
  z-index: 50;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: #161c2a6b;
  place-items: center;
  padding: 24px;
  display: grid;
  position: fixed;
  inset: 0;
}

.modal {
  width: min(100%, 720px);
  max-height: min(790px, 100vh - 48px);
  box-shadow: var(--shadow-pop);
  background: #fff;
  border: 1px solid #ffffffd9;
  border-radius: 28px;
  flex-direction: column;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.modal-scroll {
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  border-radius: 21px;
  flex: auto;
  min-height: 0;
  margin: 8px;
  padding: 20px 20px 24px;
  overflow: hidden auto;
}

.modal.compact {
  width: min(100%, 480px);
}

.modal-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  display: flex;
}

.modal-title {
  color: var(--ink-strong);
  letter-spacing: -.06em;
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.modal-subtitle {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.close-button {
  background: var(--surface-muted);
  width: 34px;
  height: 34px;
  color: var(--muted);
  border: 0;
  border-radius: 11px;
  flex: none;
  place-items: center;
  display: grid;
}

.close-button:hover {
  color: var(--ink);
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

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

.field {
  gap: 7px;
  display: grid;
}

.field-label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.field-hint {
  color: var(--muted);
  font-size: 11px;
}

.field input, .field select, .field textarea {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  width: 100%;
  color: var(--ink);
  background: #fff;
  outline: 0;
  font-size: 13px;
  transition: border-color .18s, box-shadow .18s;
}

.field input, .field select {
  height: 48px;
  padding: 0 13px;
}

.field textarea {
  resize: vertical;
  min-height: 108px;
  padding: 12px 13px;
  line-height: 1.5;
}

.field input::placeholder, .field textarea::placeholder {
  color: #a8afb8;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px #161c2a0f;
}

.form-section-title {
  color: var(--ink);
  letter-spacing: .12em;
  text-transform: uppercase;
  grid-column: 1 / -1;
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  display: flex;
}

.form-section-title:after {
  background: var(--line);
  content: "";
  flex: 1;
  height: 1px;
}

.modal-footer {
  border-top: 1px solid var(--line);
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  padding-top: 18px;
  display: flex;
}

.drawer-backdrop {
  z-index: 45;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #161c2a4d;
  position: fixed;
  inset: 0;
}

.drawer {
  z-index: 46;
  width: min(560px, 100vw - 32px);
  box-shadow: var(--shadow-pop);
  background: #fff;
  border: 1px solid #ffffffe6;
  border-radius: 28px;
  flex-direction: column;
  animation: .24s ease-out drawer-in;
  display: flex;
  position: fixed;
  inset: 16px 16px 16px auto;
  overflow: hidden;
}

@keyframes drawer-in {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.drawer-header {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 24px 24px 18px;
  display: flex;
}

.drawer-title-wrap {
  align-items: center;
  gap: 12px;
  min-width: 0;
  display: flex;
}

.drawer-title {
  color: var(--ink-strong);
  letter-spacing: -.06em;
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.drawer-ip {
  color: var(--muted);
  margin-top: 3px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.drawer-body {
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  border-radius: 21px;
  flex: 1;
  min-height: 0;
  margin: 0 8px 8px;
  padding: 22px 16px 28px;
  overflow: hidden auto;
}

.drawer-actions {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 21px;
  display: flex;
}

.drawer-action {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  height: 34px;
  color: var(--ink-soft);
  background: #fff;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.drawer-action:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.drawer-action.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.drawer-action.accent {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.drawer-action.danger:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.live-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 22px;
  display: grid;
}

.live-stat {
  background: var(--surface-muted);
  border-radius: 17px;
  min-height: 92px;
  padding: 13px;
}

.live-stat-label {
  color: var(--muted);
  text-transform: uppercase;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
}

.live-stat-value {
  color: var(--ink);
  letter-spacing: -.07em;
  margin-top: 10px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.live-stat-value small {
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 2px;
  font-size: 11px;
}

.progress-track {
  border-radius: var(--radius-pill);
  background: #dde2e6;
  height: 5px;
  margin-top: 11px;
  overflow: hidden;
}

.progress-bar {
  border-radius: inherit;
  background: var(--data);
  height: 100%;
  transition: width .5s;
}

.progress-bar.orange {
  background: var(--accent);
}

.progress-bar.green {
  background: var(--success);
}

.detail-section {
  margin-top: 21px;
}

.detail-section-header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  display: flex;
}

.detail-section-title {
  color: var(--ink);
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.detail-tabs {
  border-bottom: 1px solid var(--line);
  gap: 16px;
  display: flex;
}

.detail-tabs button {
  color: var(--muted);
  background: none;
  border: 0;
  padding: 0 0 9px;
  font-size: 12px;
  font-weight: 800;
  position: relative;
}

.detail-tabs button.active {
  color: var(--ink);
}

.detail-tabs button.active:after {
  background: var(--accent);
  content: "";
  border-radius: 2px;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.code-box {
  background: var(--ink);
  color: #b4c7d9;
  white-space: pre-wrap;
  border-radius: 15px;
  min-height: 140px;
  max-height: 220px;
  padding: 15px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 1.7;
  overflow: auto;
}

.code-box .prompt {
  color: #58d18b;
}

.motd-editor {
  border: 1px solid var(--line-strong);
  width: 100%;
  min-height: 150px;
  color: var(--ink);
  resize: vertical;
  background: #fbfcfd;
  border-radius: 15px;
  outline: 0;
  padding: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 1.6;
}

.motd-editor:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px #161c2a0f;
}

.drawer-loading {
  min-height: 120px;
  color: var(--muted);
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  display: grid;
}

.auth-page {
  background: radial-gradient(circle at 20% 15%, #e8462a26, transparent 25rem),
    radial-gradient(circle at 85% 85%, #6c9bd933, transparent 30rem),
    var(--canvas);
  place-items: center;
  min-height: 100vh;
  padding: 32px;
  display: grid;
}

.auth-layout {
  background: var(--ink);
  border-radius: 36px;
  grid-template-columns: .9fr 1.1fr;
  width: min(100%, 1040px);
  min-height: 640px;
  display: grid;
  overflow: hidden;
  box-shadow: 0 26px 70px -30px #161c2a6b;
}

.auth-story {
  color: #fff;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.auth-story:before {
  content: "";
  border: 1px solid #ffffff26;
  border-radius: 50%;
  width: 330px;
  height: 330px;
  position: absolute;
  bottom: -80px;
  right: -90px;
  box-shadow: 0 0 0 29px #ffffff0a, 0 0 0 58px #ffffff08;
}

.auth-story:after {
  content: "";
  background: linear-gradient(#0000, #ffffff26, #0000);
  width: 1px;
  height: 500px;
  position: absolute;
  top: -80px;
  left: 34%;
  transform: rotate(32deg);
}

.auth-brand, .auth-story-copy, .auth-story-footer {
  z-index: 1;
  position: relative;
}

.auth-brand {
  color: #fff;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  display: inline-flex;
}

.auth-brand .brand-mark {
  color: var(--ink);
  background: #fff;
}

.auth-brand .brand-mark span {
  background: var(--accent);
}

.auth-story-copy {
  margin-top: auto;
  padding: 80px 0 58px;
}

.auth-overline {
  color: #ffffff85;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}

.auth-story-title {
  letter-spacing: -.075em;
  max-width: 380px;
  margin: 17px 0 0;
  font-size: clamp(32px, 4vw, 49px);
  font-weight: 700;
  line-height: 1.05;
}

.auth-story-title em {
  color: var(--accent);
  font-style: normal;
}

.auth-story-description {
  color: #ffffffa1;
  max-width: 330px;
  margin: 17px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.auth-story-footer {
  color: #ffffff6e;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  display: flex;
}

.auth-story-footer strong {
  color: #ffffffd9;
  font-weight: 700;
}

.auth-form-panel {
  background: #fffffffa;
  place-items: center;
  padding: 34px clamp(26px, 5vw, 76px);
  display: grid;
}

.auth-form-inner {
  width: min(100%, 360px);
}

.auth-form-header {
  margin-bottom: 28px;
}

.auth-form-kicker {
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
}

.auth-form-kicker span {
  background: var(--accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.auth-form-title {
  color: var(--ink-strong);
  letter-spacing: -.075em;
  margin: 0;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.1;
}

.auth-form-copy {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.demo-auth-form {
  gap: 14px;
  display: grid;
}

.demo-auth-form .button {
  width: 100%;
  margin-top: 5px;
}

.auth-divider {
  color: #a4acb5;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  margin: 19px 0;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.auth-divider:before, .auth-divider:after {
  background: var(--line);
  content: "";
  flex: 1;
  height: 1px;
}

.auth-note {
  color: var(--muted);
  text-align: center;
  margin: 18px 0 0;
  font-size: 11px;
  line-height: 1.65;
}

.auth-note a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.hexclave-component-wrap {
  width: 100%;
}

@media (max-width: 1180px) {
  .sidebar {
    width: 220px;
  }

  .main-column {
    margin-left: 220px;
  }

  .topbar, .page-content {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-card {
    grid-template-columns: minmax(0, 1fr) minmax(310px, .9fr);
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 930px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    max-width: 590px;
  }

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

  .chart-card {
    min-height: 285px;
  }

  .auth-layout {
    grid-template-columns: 1fr;
  }

  .auth-story {
    min-height: 300px;
  }

  .auth-story-copy {
    padding: 62px 0 18px;
  }

  .auth-story-title {
    max-width: 520px;
    font-size: 36px;
  }

  .auth-story-footer {
    display: none;
  }
}

@media (max-width: 720px) {
  .sidebar {
    z-index: 40;
    border-top: 1px solid #cfd5dcc2;
    border-right: 0;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 67px;
    padding: 8px 12px;
    display: flex;
    position: fixed;
    inset: auto 0 0;
  }

  .sidebar .brand, .sidebar-section-label, .sidebar-footer, .nav-link span:not(.nav-icon) {
    display: none;
  }

  .sidebar nav {
    width: 100%;
  }

  .sidebar nav[aria-label="Management navigation"] {
    display: none;
  }

  .nav-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    width: min(100%, 360px);
    margin: 0 auto;
    display: grid;
  }

  .nav-link {
    border-radius: 14px;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    min-height: 49px;
    padding: 0;
    font-size: 10px;
    display: flex;
  }

  .nav-link.active:after {
    top: 6px;
    right: calc(50% - 3px);
  }

  .nav-icon {
    width: 100%;
  }

  .main-column {
    margin-left: 0;
    padding-bottom: 66px;
  }

  .topbar {
    height: 67px;
    padding: 0 16px;
  }

  .mobile-brand {
    color: var(--ink);
    align-items: center;
    gap: 8px;
    text-decoration: none;
    display: inline-flex;
  }

  .mobile-brand .brand-mark {
    border-radius: 10px;
    width: 29px;
    height: 29px;
  }

  .mobile-brand .brand-name {
    font-size: 15px;
  }

  .breadcrumbs {
    display: none;
  }

  .topbar-actions {
    gap: 7px;
  }

  .search-box, .profile-copy, .profile-chevron {
    display: none;
  }

  .profile-trigger {
    padding: 3px;
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .mobile-search-box {
    border-radius: var(--radius-pill);
    height: 42px;
    color: var(--muted);
    background: #ffffffb8;
    border: 1px solid #cfd5dcd1;
    align-items: center;
    gap: 9px;
    margin: 14px 16px 0;
    padding: 0 13px;
    display: flex;
  }

  .mobile-search-box input {
    width: 100%;
    min-width: 0;
    color: var(--ink);
    background: none;
    border: 0;
    outline: 0;
    font-size: 13px;
  }

  .mobile-search-box input::placeholder {
    color: #9ba3ae;
  }

  .page-content {
    padding: 23px 16px 36px;
  }

  .heading-row {
    margin-bottom: 20px;
    display: block;
  }

  .heading-actions {
    align-items: stretch;
    margin-top: 17px;
  }

  .heading-actions .demo-ribbon {
    flex: 100%;
    justify-content: center;
  }

  .heading-actions .button {
    flex: calc(50% - 5px);
  }

  .hero-card {
    border-radius: 25px;
    min-height: auto;
    padding: 24px;
  }

  .hero-title {
    font-size: 29px;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metric {
    min-height: 78px;
    padding: 12px;
  }

  .hero-metric-value {
    font-size: 21px;
  }

  .metrics-grid {
    gap: 10px;
  }

  .metric-card {
    border-radius: 23px;
    min-height: 132px;
    padding: 16px;
  }

  .metric-value {
    font-size: 22px;
  }

  .panel {
    border-radius: 24px;
    padding: 20px 16px;
  }

  .container-table th:nth-child(3), .container-table td:nth-child(3), .container-table th:nth-child(4), .container-table td:nth-child(4) {
    display: none;
  }

  .container-table th, .container-table td {
    padding-left: 5px;
    padding-right: 5px;
  }

  .container-table td {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .container-cell {
    min-width: 124px;
  }

  .container-icon {
    width: 29px;
    height: 29px;
  }

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .modal {
    border-radius: 28px 28px 0 0;
    max-height: 93vh;
  }

  .modal-scroll {
    border-radius: 22px;
    margin: 6px;
    padding: 17px 14px 20px;
  }

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

  .form-grid .full, .form-section-title {
    grid-column: auto;
  }

  .drawer {
    border-radius: 28px 28px 0 0;
    width: 100%;
    max-height: 93vh;
    inset: auto 0 0;
  }

  .drawer-header {
    padding: 20px 18px 16px;
  }

  .drawer-body {
    border-radius: 22px;
    margin: 0 6px 6px;
    padding: 18px 12px 22px;
  }

  .live-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-page {
    padding: 0;
  }

  .auth-layout {
    border-radius: 0;
    min-height: 100vh;
  }

  .auth-story {
    min-height: 284px;
    padding: 26px 22px;
  }

  .auth-story-copy {
    padding-top: 44px;
  }

  .auth-story-title {
    font-size: 32px;
  }

  .auth-form-panel {
    align-items: start;
    padding: 34px 22px 50px;
  }

  .toast {
    max-width: none;
    bottom: 82px;
    left: 16px;
    right: 16px;
  }
}

@media (max-width: 420px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-label, .metric-bottom {
    font-size: 11px;
  }

  .heading-actions .button {
    flex: 1;
  }

  .hero-metrics {
    gap: 7px;
  }

  .hero-metric-value {
    font-size: 19px;
  }

  .hero-metric-note {
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metric {
    min-height: 72px;
  }

  .topbar-actions {
    gap: 4px;
  }
}

.spin {
  animation: 1s linear infinite spin;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/