/* OutSystems Partners Tracker - styles */

:root {
  --bg: #f6f7fa;
  --surface: #ffffff;
  --border: #e2e6ee;
  --text: #1a1f2e;
  --muted: #687184;
  --accent: #d6342f;          /* OutSystems-ish red */
  --accent-dark: #b1241f;
  --green: #2e7d4f;
  --red: #c2362f;
  --amber: #b67900;
  --shadow: 0 1px 2px rgba(20,30,50,.04), 0 4px 14px rgba(20,30,50,.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { max-width: 1180px; margin: 0 auto; padding: 24px 28px 64px; }

/* Topbar */
.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
}
.topbar__inner {
  max-width: 1180px; margin: 0 auto;
  padding: 12px 28px;
  display: flex; align-items: center; gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px;
  color: var(--text); white-space: nowrap;
}
.brand__mark {
  width: 16px; height: 16px;
  background: var(--accent); border-radius: 4px;
}
.topnav { display: flex; gap: 4px; flex: 1; }
.topnav a {
  padding: 6px 12px; border-radius: 6px; color: var(--muted);
}
.topnav a.is-active, .topnav a:hover { background: var(--bg); color: var(--text); text-decoration: none; }

/* Dropdown nav item */
.topnav__dropdown { position: relative; display: inline-flex; align-items: center; }
.topnav__dropdown-toggle {
  padding: 6px 12px; border-radius: 6px; color: var(--muted);
  cursor: pointer; user-select: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
}
.topnav__dropdown-toggle::after { content: '▾'; font-size: 11px; line-height: 1; }
.topnav__dropdown-toggle:hover,
.topnav__dropdown-toggle.is-active { background: var(--bg); color: var(--text); }
.topnav__dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; margin-top: 2px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: var(--shadow); min-width: 120px; z-index: 100; overflow: hidden;
}
.topnav__dropdown-menu.is-open { display: block; }
.topnav__dropdown-menu a {
  display: block; padding: 8px 14px; color: var(--text); font-size: 14px;
  white-space: nowrap; border-radius: 0;
}
.topnav__dropdown-menu a:hover { background: var(--bg); text-decoration: none; }
.topnav__dropdown-menu a.is-active { background: var(--bg); color: var(--text); font-weight: 600; }
.topbar__actions { display: flex; gap: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 6px;
  font-size: 14px; cursor: pointer;
  font-family: inherit;
}
.btn:hover { border-color: #c5cad5; }
.btn--primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn--ghost { background: transparent; }
.btn--sm { padding: 4px 10px; font-size: 13px; }

/* Page header */
.page-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px; margin-bottom: 16px;
}
.page-header h1 { margin: 0 0 4px; font-size: 26px; }
.page-header p { margin: 0; }

.snapshot-picker select {
  font-family: inherit; font-size: 13px; padding: 6px 8px;
  border: 1px solid var(--border); border-radius: 6px; background: #fff;
}

.back { display: inline-block; margin-bottom: 12px; color: var(--muted); }

/* Filters */
.filters {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  padding: 10px; border-radius: 8px; margin-bottom: 18px;
  box-shadow: var(--shadow);
}
.filters input, .filters select {
  font-family: inherit; font-size: 14px; padding: 7px 10px;
  border: 1px solid var(--border); border-radius: 6px; background: #fff; min-width: 0;
}
.filters input[type="search"] { flex: 1 1 220px; }
.filters select { min-width: 130px; }

/* Grid */
.grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px; box-shadow: var(--shadow);
  color: var(--text); display: block; transition: transform .12s, box-shadow .12s;
}
.card:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 2px 4px rgba(20,30,50,.06), 0 8px 22px rgba(20,30,50,.08); }
.card__head { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.card__logo {
  width: 44px; height: 44px; border-radius: 8px; object-fit: contain; background: #f0f2f7;
  flex: 0 0 44px;
}
.card__logo--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--muted);
}
.card__head h3 { margin: 0; font-size: 16px; }
.card__desc { margin: 4px 0 12px; color: var(--muted); font-size: 13px; line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card__meta { margin: 0; font-size: 12px; }
.card__meta div { display: grid; grid-template-columns: 70px 1fr; gap: 6px; padding: 2px 0; }
.card__meta dt { color: var(--muted); }
.card__meta dd { margin: 0; }

/* Tier chip */
.tier {
  display: inline-block; padding: 2px 8px; border-radius: 12px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  background: #eef0f5; color: #4a5269;
}
.tier--premier   { background: #fde8e7; color: #b1241f; }
.tier--advanced  { background: #fff3da; color: #7a5400; }
.tier--specialist{ background: #e4f1ea; color: #2e7d4f; }
.tier--registered{ background: #e6ecf6; color: #2c4d8a; }
.tier--unknown   { background: #eef0f5; color: #4a5269; }

.chip {
  display: inline-block; padding: 2px 8px; border-radius: 12px;
  background: #eef0f5; color: #4a5269; font-size: 11px;
  margin-left: 8px; vertical-align: middle;
}
.badge {
  display: inline-block; padding: 1px 6px; border-radius: 10px;
  background: #eef0f5; color: #4a5269; font-size: 11px; margin-left: 4px;
}

/* Partner detail */
.partner-head {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 20px; box-shadow: var(--shadow); margin-bottom: 16px;
}
.partner-head__main { display: flex; gap: 16px; align-items: center; }
.partner-head__logo { width: 64px; height: 64px; border-radius: 10px; object-fit: contain; background: #f0f2f7; }
.partner-head h1 { margin: 0 0 4px; font-size: 26px; }
.partner-head .link { display: block; margin-top: 6px; font-size: 13px; }

.partner-desc { color: var(--muted); font-size: 14px; max-width: 720px; margin: 0 0 16px; }

.partner-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.info-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 14px;
}
.info-card h4 { margin: 0 0 6px; font-size: 12px; text-transform: uppercase; color: var(--muted); letter-spacing: .04em; }
.info-card ul { list-style: none; padding: 0; margin: 0; }
.info-card li { padding: 3px 0; font-size: 13px; }

/* History timeline */
.history { margin-top: 28px; }
.history h2 { margin: 0 0 12px; font-size: 18px; }
.timeline { list-style: none; padding-left: 0; margin: 0; border-left: 2px solid var(--border); }
.timeline > li { position: relative; padding: 0 0 14px 18px; margin-left: 6px; }
.timeline > li::before {
  content: ""; position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
}
.timeline header { display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; margin-bottom: 6px; }
.changes { list-style: none; padding-left: 0; margin: 0; font-size: 13px; }
.changes li { display: flex; flex-wrap: wrap; gap: 4px; padding: 2px 0; }
.changes__field { font-weight: 600; min-width: 110px; }
.changes__before { color: var(--red); text-decoration: line-through; opacity: .8; }
.changes__after  { color: var(--green); font-weight: 500; }
.changes__arrow  { color: var(--muted); }

/* Snapshots table */
.table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); table-layout: auto; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); font-size: 14px; }
.table th { background: #f9fafc; color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.table .col-source { width: 40%; word-break: break-all; }
.table .col-id     { width: 90px; }
.table .col-count  { width: 130px; }
.table .col-action { width: 100px; text-align: right; }
.row--muted td     { opacity: .5; }

.waf-reason {
  display: inline-block; padding: 2px 8px; border-radius: 12px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  background: var(--surface); border: 1px solid var(--border); color: var(--muted);
}
.waf-reason--challenge_page  { color: var(--amber); border-color: var(--amber); }
.waf-reason--fetch_exception { color: var(--red); border-color: var(--red); }
.waf-reason[class*="--http_4"], .waf-reason[class*="--http_5"] { color: var(--red); border-color: var(--red); }

/* Diff page */
.summary-row { display: flex; gap: 12px; margin-bottom: 18px; }
.summary {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  padding: 12px; border-radius: 8px; text-align: center;
}
.summary strong { display: block; font-size: 22px; }
.summary span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.summary--add strong { color: var(--green); }
.summary--rem strong { color: var(--red); }
.summary--chg strong { color: var(--amber); }

.section-h { margin: 24px 0 8px; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--add { background: var(--green); }
.dot--rem { background: var(--red); }
.dot--chg { background: var(--amber); }
.diff-list { list-style: none; padding: 0; margin: 0; }
.diff-list li { padding: 4px 0; font-size: 14px; border-bottom: 1px dashed var(--border); }
.changeset { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; margin-bottom: 8px; }
.changeset h3 { margin: 0 0 6px; font-size: 15px; }

.project-changes { margin-top: 10px; padding-top: 8px; border-top: 1px dashed var(--border); }
.project-changes__header { font-weight: 600; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.project-changes__group { margin-bottom: 8px; }
.project-changes__label { font-size: 13px; font-weight: 600; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.project-changes__item { padding: 6px 0; border-bottom: 1px dashed var(--border); }
.project-changes__item:last-child { border-bottom: none; }

/* Empty state */
.empty-state {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px; box-shadow: var(--shadow);
  max-width: 640px; margin: 24px auto;
}
.empty-state h1 { margin-top: 0; font-size: 22px; }
.empty-state ul { padding-left: 18px; }

code { background: #eef0f5; padding: 1px 5px; border-radius: 4px; font-size: 13px; }

/* Card stats footer */
.card__stats {
  display: flex; gap: 12px; margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted);
}
.card__stats .stat strong { color: var(--text); margin-right: 3px; }

/* Big number in info-card heading */
.info-card--wide { grid-column: 1 / -1; }
.big-num { font-size: 22px; font-weight: 700; color: var(--accent); }
.small { font-size: 12px; }

/* Projects */
.projects { margin-top: 24px; }
.projects h2 { margin: 0 0 12px; font-size: 18px; }
.projects-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.project-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 14px;
}
.project-card header { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; margin-bottom: 6px; }
.project-card__chips { display: flex; flex-wrap: wrap; gap: 4px; flex-shrink: 0; }
.chip--appeared { background: #e8f4fd; color: #1a5a8a; font-size: 10px; }
.chip--platform { font-size: 10px; font-weight: 600; letter-spacing: 0.02em; }
.chip--o11 { background: #e8f0fd; color: #1a4a9a; }
.chip--odc { background: #fdf0e8; color: #9a4a1a; }
.chip--o11-odc { background: #f0eafd; color: #5a1a9a; }

/* Cert list on partner page */
.cert-platform-group { margin-top: 12px; }
.cert-platform-group:first-child { margin-top: 0; }
.cert-platform-label { display: inline-block; margin-bottom: 6px; }
.cert-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.cert-list__item { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.cert-list__badge { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.cert-list__name { flex: 1; }

/* Certification catalog table */
.cert-catalog-actions { margin-top: 16px; }
.cert-catalog-table .col-logo { width: 56px; text-align: center; }
.cert-catalog-table .col-id   { width: 60px; }
.cert-catalog-table .col-desc { min-width: 220px; }
.cert-catalog-table .col-platform { width: 140px; }
.cert-catalog__badge { width: 40px; height: 40px; object-fit: contain; }
.cert-catalog__form { display: contents; }
.input  { width: 100%; padding: 4px 8px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; }
.select { width: 100%; padding: 4px 6px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; background: var(--surface); }
.project-card h3 { margin: 0; font-size: 14px; }
.project-card dl { margin: 0; font-size: 12px; }
.project-card dl div { display: grid; grid-template-columns: 60px 1fr; padding: 1px 0; }
.project-card dt { color: var(--muted); }
.project-card dd { margin: 0; }
.link.small { font-size: 12px; }

/* Project card partner line */
.project-card__partner {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; margin-bottom: 8px;
}
.project-card__partner a { color: var(--accent); font-weight: 500; }
.project-card__desc {
  margin: 8px 0 0; font-size: 12px; color: var(--muted); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.project-card__meta {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
  margin-bottom: 0;
}
.project-card__meta dl { flex: 1; min-width: 0; }
.project-card__customer {
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0; flex-direction: column; text-align: center;
}
.project-card__customer-logo {
  width: 32px; height: 32px; object-fit: contain;
  border-radius: 4px; flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 2px;
}
.project-card__customer-initial {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 4px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.project-card__customer-name {
  font-size: 12px; font-weight: 600; color: var(--fg);
}

/* Certification evolution chart */
.cert-evolution { margin-top: 28px; }
.cert-evolution h2 { margin: 0 0 12px; font-size: 18px; }
.chart-container {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px; box-shadow: var(--shadow);
  position: relative; max-height: 440px;
}

/* Pagination */
.pagination {
  display: flex; align-items: center; gap: 10px;
  justify-content: center; margin-top: 28px;
}
.pagination__info { font-size: 13px; color: var(--muted); }
.btn--disabled { opacity: .4; pointer-events: none; }

/* Auth pages (login / setup) */
.auth-body {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; background: var(--bg);
}
.auth-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 40px; width: 100%; max-width: 400px;
  box-shadow: var(--shadow);
}
.auth-card__brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; margin-bottom: 24px; color: var(--text);
}
.auth-card__title { margin: 0 0 6px; font-size: 22px; }
.auth-card__sub { margin: 0 0 20px; color: var(--muted); font-size: 14px; }
.auth-flash {
  padding: 9px 12px; border-radius: 6px; font-size: 14px; margin-bottom: 14px;
}
.auth-flash--error { background: #fde8e7; color: var(--red); }
.auth-flash--ok    { background: #e4f1ea; color: var(--green); }

/* Shared form fields */
.field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.field label { font-size: 13px; font-weight: 600; }
.field input, .field select {
  font-family: inherit; font-size: 14px; padding: 8px 10px;
  border: 1px solid var(--border); border-radius: 6px; background: #fff;
}
.field input:focus, .field select:focus {
  outline: 2px solid var(--accent); outline-offset: -1px; border-color: var(--accent);
}
.btn--full { width: 100%; justify-content: center; }

/* Flash messages (inside app pages) */
.flash {
  padding: 9px 14px; border-radius: 6px; font-size: 14px; margin-bottom: 14px;
}
.flash--error { background: #fde8e7; color: var(--red); }
.flash--ok    { background: #e4f1ea; color: var(--green); }

/* Role chip */
.role-chip {
  display: inline-block; padding: 2px 8px; border-radius: 12px;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
}
.role-chip--admin  { background: #fde8e7; color: #b1241f; }
.role-chip--viewer { background: #e4f1ea; color: #2e7d4f; }

/* User pill in topbar */
.user-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 4px 4px 10px;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--bg);
}
.user-pill__name { font-size: 13px; font-weight: 600; }

/* User management page */
.users-layout {
  display: grid; gap: 24px;
  grid-template-columns: 1fr 340px;
}
@media (max-width: 800px) { .users-layout { grid-template-columns: 1fr; } }

.panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 20px; box-shadow: var(--shadow);
}
.panel__title { margin: 0 0 14px; font-size: 16px; }

.actions-cell { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.d-inline { display: inline; }
.btn--danger { background: transparent; border-color: #e0c0c0; color: var(--red); }
.btn--danger:hover { border-color: var(--red); background: #fff0f0; }

.create-form { display: flex; flex-direction: column; }
.create-form .btn { align-self: flex-start; }
.field-row { display: flex; gap: 8px; align-items: center; margin-top: 4px; }
.auth-panel { max-width: 420px; margin: 0 auto; padding-top: 24px; }

/* Inline details/summary for change-password */
.inline-details summary { cursor: pointer; list-style: none; }
.inline-details summary::-webkit-details-marker { display: none; }
.inline-form {
  display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
  margin-top: 8px; padding: 10px; border: 1px solid var(--border);
  border-radius: 6px; background: var(--bg);
}
.inline-form input {
  font-family: inherit; font-size: 13px; padding: 6px 8px;
  border: 1px solid var(--border); border-radius: 6px; flex: 1 1 140px;
}

/* Sessions map */
#sessions-map { height: 420px; border-radius: 8px; box-shadow: var(--shadow); }

/* Profile Lookup page */
.profile-lookup-card { max-width: 680px; }
.lookup-form__label { display: block; font-weight: 600; margin-bottom: 6px; }
.lookup-form__input-group { display: flex; gap: 8px; }
.lookup-form__input-group .input { flex: 1; }

.result-header {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin: 24px 0 12px;
}
.result-meta { display: flex; gap: 6px; align-items: center; }
.result-meta__label { font-size: 13px; color: var(--muted); }
.result-meta__value { font-weight: 600; }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.cert-lookup-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px; box-shadow: var(--shadow);
}
.cert-lookup-card__body { display: flex; gap: 12px; align-items: flex-start; }
.cert-lookup-card__logo {
  width: 52px; height: 52px; object-fit: contain; flex-shrink: 0;
  border-radius: 6px;
}
.cert-lookup-card__info { flex: 1; min-width: 0; }
.cert-lookup-card__name { font-weight: 600; font-size: 14px; line-height: 1.35; }
.cert-lookup-card__meta { font-size: 12px; color: var(--muted); margin-top: 3px; }

.json-details { margin-top: 8px; }
.json-details summary {
  cursor: pointer; font-size: 13px; color: var(--muted);
  padding: 6px 0; user-select: none;
}
.json-block {
  background: #1a1f2e; color: #c8d8f0;
  border-radius: 8px; padding: 16px; overflow-x: auto;
  font-size: 13px; line-height: 1.6; margin: 8px 0 0;
  max-height: 500px;
}

.alert { padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-top: 16px; }
.alert--error { background: #fff0f0; border: 1px solid #f0c0c0; color: var(--red); }

.spinner {
  display: inline-block; width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite;
  vertical-align: middle; margin-right: 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.page-subtitle { margin: 4px 0 20px; color: var(--muted); }

.section-title {
  font-size: 16px; font-weight: 600; margin: 20px 0 8px;
  color: var(--text);
}

.cert-lookup-card__platform { margin: 4px 0 2px; }
.platform-chip {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 999px;
  background: #eef1f6; color: var(--text);
  border: 1px solid var(--border);
  letter-spacing: 0.3px;
}

.cert-lookup-card--unmapped { border-style: dashed; }
.cert-lookup-card__meta--unmapped {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  padding: 1px 6px; border-radius: 4px;
  background: #fff4e5; color: var(--amber);
  border: 1px solid #f1d6a8;
  margin-top: 4px;
}
