:root {
  font-family: "Space Grotesk", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #e2e8f0;
  background-color: #050c24;
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, rgba(14, 116, 144, 0.35), transparent 50%),
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.45), transparent 40%),
    #050c24;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 6vw;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(12px);
}

.top-bar__brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #bae6fd;
}

.top-bar__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.25);
  font-size: 0.9rem;
}

.user-role {
  font-size: 0.75rem;
  text-transform: capitalize;
  color: #94a3b8;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  border-radius: 0.85rem;
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.4);
  text-decoration: none;
}
.ghost-button:hover:not(:disabled) {
  box-shadow: none;
  transform: none;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.95rem 1.6rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(226, 232, 240, 0.3);
  background: transparent;
  color: #e2e8f0;
  font-weight: 600;
  text-decoration: none;
}
.secondary-link:hover {
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.25);
}
}

.explorer-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, rgba(14, 116, 144, 0.35), transparent 50%),
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.45), transparent 40%),
    #050c24;
  color: #e2e8f0;
}

.page-header {
  padding: 3rem 6vw 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.page-actions {
  display: flex;
  gap: 1rem;
}

.page-actions.admin-only {
  display: none;
}

.page-actions.admin-only.is-visible {
  display: flex;
}

.page-actions button {
  height: fit-content;
}

.page-actions select {
  min-width: 220px;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.admin-only {
  display: none;
}

.admin-only.is-visible {
  display: block;
}

.profile-card {
  grid-column: 1 / -1;
}

.totp-status {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.totp-actions {
  display: flex;
  gap: 0.75rem;
}

.totp-setup {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px dashed rgba(56, 189, 248, 0.4);
  background: rgba(2, 6, 23, 0.6);
}

.totp-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 1rem 0;
}

.inline {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 0.4rem;
}

.card {
  background: rgba(3, 7, 18, 0.85);
  border-radius: 1.5rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 1.75rem;
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.6);
}

.settings-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.settings-form.inline {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
}

.settings-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 0.4rem;
}

textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(226, 232, 240, 0.2);
  background: rgba(2, 6, 23, 0.8);
  color: #e2e8f0;
  resize: vertical;
  font-family: inherit;
}

.generated-key {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px dashed rgba(56, 189, 248, 0.4);
  background: rgba(2, 6, 23, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.generated-key code {
  font-size: 0.95rem;
  word-break: break-all;
}

.table-scroll {
  max-height: 420px;
  overflow: auto;
}

.settings-table {
  width: 100%;
  border-collapse: collapse;
  color: #e2e8f0;
}

.settings-table th,
.settings-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.settings-table th {
  text-align: left;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(226, 232, 240, 0.6);
}

.settings-table button {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(15, 118, 110, 0.95);
  color: #ecfeff;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.4);
  transition: opacity 0.2s ease;
}

.page-content {
  padding: 0 6vw 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.focus-section {
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid rgba(15, 118, 110, 0.25);
  border-radius: 1.5rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.45);
}

.risk-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.risk-card {
  display: flex;
  gap: 1rem;
  border: 1px solid rgba(248, 113, 113, 0.25);
  border-radius: 1.25rem;
  padding: 1rem 1.5rem;
  background: rgba(15, 23, 42, 0.9);
  align-items: center;
}

.risk-rank {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fecaca;
}

.risk-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.risk-meta {
  margin: 0;
  color: rgba(226, 232, 240, 0.7);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: #38bdf8;
  font-weight: 600;
}

.empty-state {
  background: rgba(15, 23, 42, 0.65);
  border: 1px dashed rgba(56, 189, 248, 0.4);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
}

.empty-state .primary {
  margin-top: 1rem;
}

a.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #0ea5e9, #14b8a6);
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

body.modal-open {
  overflow: hidden;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 6vw 3rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 118, 110, 0.85));
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  color: #f8fafc;
}

.hero__content {
  flex: 1 1 320px;
}

.hero__content h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 0.25rem 0 1rem;
}

.hero__form {
  flex: 1 1 360px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.4);
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.input-group {
  display: flex;
  gap: 0.85rem;
  width: 100%;
}

input[type="text"] {
  flex: 1;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(226, 232, 240, 0.2);
  background: rgba(2, 6, 23, 0.8);
  color: #e2e8f0;
}

input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"] {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(226, 232, 240, 0.2);
  background: rgba(2, 6, 23, 0.8);
  color: #e2e8f0;
}

select {
  flex: 1;
  padding: 0.95rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(226, 232, 240, 0.2);
  background: rgba(2, 6, 23, 0.8);
  color: #e2e8f0;
  appearance: none;
}

button {
  padding: 0.95rem 1.6rem;
  border-radius: 0.85rem;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 118, 110, 0.25);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

button[type="submit"] {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #0f172a;
}

button.secondary {
  width: 100%;
  margin-top: 0.85rem;
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(226, 232, 240, 0.3);
}

#login-back {
  width: auto;
  padding: 0.6rem 1rem;
  margin-top: 0.25rem;
}

.hint {
  margin-top: 0.65rem;
  color: rgba(226, 232, 240, 0.7);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0 0 0.35rem;
}

main {
  max-width: 1200px;
  margin: -2rem auto 4rem;
  padding: 0 1rem;
}

.dashboard.hidden {
  display: none;
}

.dashboard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.summary-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.4);
}

.summary-card h3 {
  margin: 0;
  font-size: 2.3rem;
}

.summary-card p {
  margin: 0.25rem 0 0;
  color: #cbd5f5;
}

.insight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.insight-chip {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  color: #bae6fd;
  font-size: 0.85rem;
}

.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.chart-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(15, 118, 110, 0.2);
  box-shadow: 0 25px 45px rgba(2, 6, 23, 0.45);
}
.chart-card canvas {
  width: 100% !important;
  max-height: 320px !important;
  aspect-ratio: 1 / 1;
}

.chart-card__header h3 {
  margin: 0;
}

.table-wrapper {
  background: rgba(3, 7, 18, 0.85);
  border-radius: 1.5rem;
  border: 1px solid rgba(15, 118, 110, 0.2);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.5);
  width: 100%;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

table {
  width: 100%;
  border-collapse: collapse;
  color: #e2e8f0;
}

th,
td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

td code {
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: "Fira Code", "SFMono-Regular", Menlo, monospace;
  font-size: 0.85rem;
  color: #94a3b8;
}

tr.clickable-row {
  cursor: pointer;
  transition: background 0.2s ease;
}

tr.clickable-row:hover {
  background: rgba(59, 130, 246, 0.08);
}

th {
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.65);
}

th[data-sort-key] {
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
  user-select: none;
}

th[data-sort-key]::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.65rem;
  color: rgba(226, 232, 240, 0.4);
}

th.sorted-asc::after {
  content: "▲";
}

th.sorted-desc::after {
  content: "▼";
}

.trend-cell {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sparkline {
  width: 90px;
  height: 28px;
}

.sparkline polyline {
  fill: none;
  stroke: #38bdf8;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.trend-delta {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.2);
}

.trend-delta.up {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.5);
}

.trend-delta.down {
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.5);
}

.trend-delta.flat {
  color: rgba(226, 232, 240, 0.7);
}

tr:last-child td {
  border-bottom: none;
}

.dep-name {
  font-weight: 600;
}

.dep-meta {
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.85rem;
}

.severity-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: capitalize;
}

.license-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.license-badge.ok {
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
}

.license-badge.caution {
  background: rgba(248, 113, 113, 0.2);
  color: #fecaca;
}

.shadow-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  background: rgba(248, 113, 113, 0.2);
  color: #fecaca;
  margin-left: 0.5rem;
}

.shadow-pill.small {
  font-size: 0.65rem;
  padding: 0.1rem 0.45rem;
  margin-left: 0.3rem;
}

.severity-critical {
  background: rgba(239, 68, 68, 0.25);
  color: #fecaca;
}

.severity-high {
  background: rgba(249, 115, 22, 0.25);
  color: #fed7aa;
}

.severity-medium {
  background: rgba(234, 179, 8, 0.25);
  color: #fde68a;
}

.severity-low {
  background: rgba(34, 197, 94, 0.25);
  color: #bbf7d0;
}

.severity-none {
  background: rgba(148, 163, 184, 0.25);
  color: #cbd5f5;
}

.cve-item {
  font-size: 0.85rem;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.cve-item:last-child {
  margin-bottom: 0;
}

.cve-item a {
  color: #38bdf8;
  text-decoration: none;
}

.cve-item a:hover {
  text-decoration: underline;
}

.status {
  min-height: 1.5rem;
  text-align: center;
  color: #e2e8f0;
  margin-top: 1.5rem;
}

.detail-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 90vw);
  height: 100vh;
  background: rgba(2, 6, 23, 0.96);
  border-left: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: -20px 0 40px rgba(2, 6, 23, 0.6);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transition: transform 0.3s ease;
  z-index: 100;
}

.detail-drawer.hidden {
  transform: translateX(100%);
}

#detail-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
}

.detail-header h2 {
  margin: 0.25rem 0 0.2rem;
}

.detail-header p {
  margin: 0;
  color: rgba(226, 232, 240, 0.7);
}

.detail-section {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.detail-section h4 {
  margin: 0 0 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.7);
}

.risk-entry {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.risk-entry:last-child {
  margin-bottom: 0;
}

.version-path {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.version-node {
  flex: 1 1 120px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 1rem;
  padding: 0.8rem;
}

.version-node.current {
  border-color: #fbbf24;
}

.version-node h5 {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.version-node p {
  margin: 0.3rem 0 0;
  font-size: 1.1rem;
}

.introduced-path {
  padding: 0.4rem 0.6rem;
  border-radius: 0.75rem;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.vuln-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vuln-item {
  padding: 0.85rem 1rem;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(248, 250, 252, 0.08);
  border-radius: 1rem;
}

.vuln-item h5 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.vuln-meta {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.65);
}



.license-charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.license-table-wrapper {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 1.5rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  overflow: hidden;
}

.license-dep-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.license-dep {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.2);
  border: 1px solid rgba(45, 212, 191, 0.3);
  font-size: 0.85rem;
}

#secrets-body code {
  font-family: "Fira Code", "SFMono-Regular", Menlo, monospace;
  font-size: 0.85rem;
  color: #94a3b8;
  white-space: pre-wrap;
  word-break: break-word;
}

.auth-page {
  min-height: 100vh;
  width: 100vw;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 2.5rem 1.5rem;
  background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.35), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.3), transparent 45%),
    #030617;
  color: #e2e8f0;
}

.login-card {
  width: min(520px, 100%);
  background: rgba(2, 6, 23, 0.92);
  border-radius: 1.75rem;
  padding: 2.5rem;
  border: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 40px 120px rgba(2, 6, 23, 0.75);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.login-header {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.login-logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
}

.login-tagline {
  margin: 0.35rem 0 0;
  color: rgba(226, 232, 240, 0.75);
}

.login-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.35), transparent);
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.login-subtitle {
  margin: 0;
  color: rgba(226, 232, 240, 0.75);
  font-size: 0.95rem;
}

.form-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.totp-instructions {
  background: rgba(15, 118, 110, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  color: #99f6e4;
}

.login-footnote {
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1.1rem;
  padding: 1rem 1.2rem;
  background: rgba(15, 23, 42, 0.6);
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.8);
}

.form-error {
  color: #f87171;
  margin: 0;
}

.login-hint {
  margin-top: 1.25rem;
  color: rgba(226, 232, 240, 0.7);
}

.auth-error-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.auth-error-overlay div {
  padding: 2rem;
  border-radius: 1.5rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(248, 113, 113, 0.4);
  text-align: center;
}
@media (max-width: 720px) {
  .input-group {
    flex-direction: column;
  }

  button,
  input[type="text"],
  select {
    width: 100%;
  }

  .hero {
    padding: 3rem 1.5rem 2rem;
  }
}

.cve-item a {
  color: #2563eb;
  text-decoration: none;
}

.cve-item a:hover {
  text-decoration: underline;
}

 @media (max-width: 640px) {
   .input-group {
     flex-direction: column;
   }

   button,
   select {
     width: 100%;
   }
 }
