* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--nexo-text);
  background:
    radial-gradient(circle at 20% -20%, rgba(39, 130, 255, 0.2), transparent 45%),
    linear-gradient(180deg, #030712 0%, var(--nexo-bg) 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.01em;
}

code,
pre,
.mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
}

.shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  background: linear-gradient(180deg, var(--nexo-nav), #061022);
  border-right: 1px solid var(--nexo-line-soft);
}

.brand,
.panel,
.topbar,
.metric,
.card,
.item,
.stat {
  border-radius: var(--nexo-radius-md);
}

.panel,
.topbar,
.metric,
.card,
.item,
.stat {
  border: 1px solid var(--nexo-line-soft);
  box-shadow: var(--nexo-shadow-soft);
}

.nav a {
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

button,
input,
select,
textarea {
  font: inherit;
  border-radius: 10px;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--nexo-primary);
  outline-offset: 2px;
}

.table-wrap,
.offer-table {
  width: 100%;
}

.offer-table td,
.offer-table th,
.table td,
.table th {
  color: #e6edf3;
  opacity: 1;
}

.offer-table td {
  color: #1f2d42;
}

.offer-table tbody tr {
  opacity: 1;
}

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

  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--nexo-line-soft);
  }
}


.sidebar a,
.nav a,
aside a {
  text-decoration: none !important;
}

.sidebar a:hover,
.nav a:hover,
aside a:hover,
.sidebar a:visited,
.nav a:visited,
aside a:visited {
  text-decoration: none !important;
}
