/* ==========================================================================
   FortifyIP — Global Stylesheet
   Color palette:
     Navy   #1B3A6B  (primary, nav, headings)
     Blue   #2E5EA8  (accent, links, focus)
     Gray   #4A5568  (body text)
     Bg     #F5F6F8  (page background)
     White  #FFFFFF  (cards, panels)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #F5F6F8;
  color: #4A5568;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: #2E5EA8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Navigation Bar
   -------------------------------------------------------------------------- */

.nav {
  background: #1B3A6B;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.nav-brand {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand:hover {
  text-decoration: none;
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 32px;
  flex: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-user {
  color: #93C5FD;
  font-size: 0.875rem;
}

/* Nav links */
.nav-link {
  color: #CBD5E0;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  text-decoration: none;
}

.nav-link.active {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: #CBD5E0;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
  white-space: nowrap;
}

.nav-dropdown-toggle:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 0.75rem;
  opacity: 0.8;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  min-width: 220px;
  padding: 6px 0;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-toggle:focus + .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 9px 16px;
  color: #4A5568;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
}

.nav-dropdown-item:hover {
  background: #F5F6F8;
  color: #1B3A6B;
  text-decoration: none;
}

.nav-dropdown-divider {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 4px 0;
}

/* Logout link in nav */
.nav-logout {
  color: #CBD5E0;
  font-size: 0.875rem;
  padding: 6px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-logout:hover {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   Page Layout
   -------------------------------------------------------------------------- */

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.page-header {
  margin-bottom: 28px;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B3A6B;
  margin-bottom: 4px;
}

.page-subtitle {
  color: #4A5568;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  padding: 28px;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1B3A6B;
  margin-bottom: 8px;
}

.card-body {
  color: #4A5568;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  white-space: nowrap;
  font-family: inherit;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: #1B3A6B;
  color: #ffffff;
}

.btn-primary:hover {
  background: #2E5EA8;
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  background: #EFF6FF;
  color: #2E5EA8;
  border: 1px solid #BFDBFE;
}

.btn-secondary:hover {
  background: #DBEAFE;
  text-decoration: none;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.8rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form-group {
  margin-bottom: 18px;
}

label,
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B3A6B;
  margin-bottom: 6px;
}

.form-hint {
  font-size: 0.775rem;
  color: #718096;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-weight: 400;
  margin-bottom: 4px;
  color: #2E5EA8;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #CBD5E0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #1a202c;
  background: #ffffff;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2E5EA8;
  box-shadow: 0 0 0 3px rgba(46,94,168,0.12);
}

select {
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   Badges & Status
   -------------------------------------------------------------------------- */

.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 12px;
  font-size: 0.775rem;
  font-weight: 600;
}

.badge-blue {
  background: #EFF6FF;
  color: #2E5EA8;
}

.badge-green {
  background: #F0FDF4;
  color: #166534;
}

.badge-yellow {
  background: #FFFBEB;
  color: #92400E;
}

.badge-red {
  background: #FEF2F2;
  color: #991B1B;
}

.badge-gray {
  background: #F1F5F9;
  color: #475569;
}

/* --------------------------------------------------------------------------
   Alerts & Banners
   -------------------------------------------------------------------------- */

.alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #B91C1C;
}

.alert-warning {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #92400E;
}

.alert-info {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1E40AF;
}

.alert-success {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #166534;
}

/* --------------------------------------------------------------------------
   Tabs
   -------------------------------------------------------------------------- */

.tabs {
  display: flex;
  border-bottom: 2px solid #E2E8F0;
  margin-bottom: 20px;
  gap: 0;
}

.tab {
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4A5568;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
}

.tab:hover {
  color: #1B3A6B;
}

.tab.active {
  color: #2E5EA8;
  border-bottom-color: #2E5EA8;
}

.tab-panel {
  display: none;
}

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

/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */

.table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

thead {
  background: #F8FAFC;
}

th {
  text-align: left;
  padding: 10px 14px;
  font-weight: 600;
  color: #1B3A6B;
  border-bottom: 1px solid #E2E8F0;
  white-space: nowrap;
}

td {
  padding: 10px 14px;
  border-bottom: 1px solid #F1F5F9;
  color: #4A5568;
  vertical-align: top;
}

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

tr:hover td {
  background: #F8FAFC;
}

/* --------------------------------------------------------------------------
   Detail Cards & Data Display
   -------------------------------------------------------------------------- */

.detail-card {
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.detail-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1B3A6B;
  margin-bottom: 12px;
}

.field-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.field-value {
  font-size: 0.95rem;
  color: #1B3A6B;
  font-weight: 500;
}

.data-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.data-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
}

.composed-block {
  font-size: 0.9rem;
  color: #1B3A6B;
  line-height: 1.5;
  margin: 0;
}

.composed-line {
  margin: 0;
}

.list-item {
  padding: 10px 0;
  border-bottom: 1px solid #F1F5F9;
}

.list-item:last-child {
  border-bottom: none;
}

.muted-value {
  color: #718096;
}

.image-card-fallback {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1B3A6B;
  padding: 12px 0;
}

.image-card-caption {
  font-size: 1rem;
  font-weight: 600;
  color: #1B3A6B;
  margin-bottom: 8px;
}

.image-card-container {
  max-height: 300px;
  text-align: center;
}

.image-card-img {
  max-height: 300px;
  max-width: 100%;
  object-fit: contain;
}

.image-card-description {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #4A5568;
}

.image-card-toggle {
  color: #2E5EA8;
  font-size: 0.85em;
}

.image-card-extra {
  margin-top: 8px;
}

.summary-field-label {
  font-size: 10px;
  font-weight: 600;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.summary-field-value {
  font-size: 13px;
  color: #1B3A6B;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Code & JSON Display
   -------------------------------------------------------------------------- */

.code-block {
  background: #1E293B;
  color: #E2E8F0;
  border-radius: 8px;
  padding: 16px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.825rem;
  line-height: 1.6;
  overflow-x: auto;
  white-space: pre;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.875em;
  background: #EFF6FF;
  color: #2E5EA8;
  padding: 2px 6px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Spinner / Loading
   -------------------------------------------------------------------------- */

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid #CBD5E0;
  border-top-color: #2E5EA8;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

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

.loading-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4A5568;
  font-size: 0.9rem;
  padding: 24px 0;
}

/* --------------------------------------------------------------------------
   Empty & Error States
   -------------------------------------------------------------------------- */

.state-empty,
.state-error {
  text-align: center;
  padding: 48px 24px;
  color: #718096;
}

.state-empty p,
.state-error p {
  margin-top: 8px;
  font-size: 0.9rem;
}

.state-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   Login Page
   -------------------------------------------------------------------------- */

.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F6F8;
}

.login-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  padding: 48px 40px 40px;
  width: 100%;
  max-width: 420px;
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1B3A6B;
  letter-spacing: -0.5px;
}

.login-logo p {
  color: #718096;
  font-size: 0.875rem;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   Dashboard
   -------------------------------------------------------------------------- */

.dashboard-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .dashboard-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .page { padding: 24px 16px 40px; }
  .login-card { padding: 32px 24px; }
  .data-grid-2col { grid-template-columns: 1fr; }
  .data-grid-3col { grid-template-columns: 1fr; }
}

.dashboard-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  padding: 28px;
  border-top: 3px solid #1B3A6B;
  transition: box-shadow 0.15s, transform 0.15s;
}

.dashboard-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transform: translateY(-1px);
}

.dashboard-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.dashboard-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1B3A6B;
  margin-bottom: 8px;
}

.dashboard-card p {
  color: #4A5568;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */

.mt-4  { margin-top:  4px;  }
.mt-8  { margin-top:  8px;  }
.mt-16 { margin-top: 16px;  }
.mt-24 { margin-top: 24px;  }
.mb-4  { margin-bottom:  4px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-sm   { font-size: 0.875rem; }
.text-muted { color: #718096; }
.text-navy  { color: #1B3A6B; }
.text-blue  { color: #2E5EA8; }
.font-mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}
.hidden { display: none !important; }

/* ── Portfolio Page (Unit 50B) ─────────────────────────────── */

/* Title cell ellipsis truncation with hover tooltip */
.portfolio-title-cell {
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Actions column compact layout */
.portfolio-actions-cell {
  white-space: nowrap;
}
.portfolio-filter-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 12px 0;
  padding: 0 4px;
}
.portfolio-filter-input {
  flex: 1;
  max-width: 320px;
  padding: 6px 10px;
  border: 1px solid #CBD5E0;
  border-radius: 4px;
  font-size: 0.9rem;
}
.portfolio-filter-count {
  font-size: 0.85rem;
  color: #718096;
}
.portfolio-sortable-th {
  cursor: pointer;
  user-select: none;
  position: relative;
}
.portfolio-sortable-th:hover {
  background: #F7FAFC;
}
.portfolio-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
.portfolio-page-indicator {
  font-size: 0.9rem;
  color: #4A5568;
  padding: 0 8px;
}
.portfolio-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 4px;
  border: 1px solid #CBD5E0;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  color: #2E5EA8;
  vertical-align: middle;
}
.portfolio-icon-btn:hover {
  background: #F7FAFC;
}
.portfolio-expand-row > td {
  background: #F7FAFC;
  border-top: none;
}
.portfolio-expand-pane {
  padding: 16px 12px;
}
.portfolio-expand-section {
  margin-bottom: 16px;
}
.portfolio-expand-section:last-child {
  margin-bottom: 0;
}
.portfolio-refresh-btn.portfolio-stale::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 4px;
  border-radius: 50%;
  background: #DD6B20;
  vertical-align: middle;
}
.portfolio-remove-btn {
  color: #9B2335;
}
.portfolio-banner-dismiss {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  color: inherit;
}

.portfolio-refresh-stamp,
.portfolio-update-stamp {
  font-size: 0.75rem;
  color: #718096;
  margin-top: 4px;
  white-space: nowrap;
}

/* ── Portfolio Columns Dropdown (Unit 50E) ──────────────────── */

.portfolio-columns-toolbar {
  position: relative;
  padding: 8px 0 12px 0;
}
.portfolio-columns-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background: #fff;
  border: 1px solid #CBD5E0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  padding: 12px;
  min-width: 220px;
}
.portfolio-columns-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.portfolio-columns-item {
  padding: 3px 0;
  font-size: 0.9rem;
  color: #1B3A6B;
}
.portfolio-columns-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.portfolio-columns-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid #E2E8F0;
  padding-top: 10px;
  margin-top: 8px;
}
.portfolio-columns-feedback {
  font-size: 0.85rem;
  color: #38A169;
  margin-top: 6px;
  text-align: center;
}
.portfolio-resize-handle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  cursor: col-resize;
  background: transparent;
}
.portfolio-resize-handle:hover {
  background: rgba(46, 94, 168, 0.3);
}

/* ─── Settings Page ─────────────────────────────────────────── */

.page-header {
  margin-bottom: 2rem;
}

.page-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25rem;
}

.page-subtitle {
  color: var(--gray);
  margin: 0;
  font-size: 0.9rem;
}

.settings-section {
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}

.settings-card {
  margin-bottom: 1.25rem;
}

.settings-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  gap: 1rem;
}

.settings-key-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.settings-key-desc {
  color: var(--gray);
  font-size: 0.875rem;
}

.key-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.key-status--set {
  background: #d1fae5;
  color: #065f46;
}

.key-status--missing {
  background: #fef3c7;
  color: #92400e;
}

.settings-form {
  border-top: 1px solid #e2e8f0;
  padding-top: 1.25rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.form-group--grow {
  flex: 1;
}

.form-group--action {
  flex-shrink: 0;
  padding-bottom: 1px; /* align button baseline with input */
}

.field-name {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--blue);
  margin-left: 0.5rem;
  font-weight: 400;
}

.settings-info-text {
  margin: 0 0 0.75rem;
  color: var(--gray);
}

.settings-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.settings-link-list li {
  font-size: 0.9rem;
}

.settings-link-list a {
  color: var(--blue);
}

.settings-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-left: 0.5rem;
}

/* Alert / success banner */
.alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

/* Dashboard warning banner (missing keys) */
.banner-warning {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.banner-warning a {
  color: #92400e;
  font-weight: 600;
  text-decoration: underline;
}
