/* QRfox app/dashboard theme — matches the marketing brand system
   (marketing.css): warm cream / orange / ink palette, Space Grotesk +
   JetBrains Mono. Kept as a separate file from marketing.css since the
   app has its own functional components (tables, forms, wizard, designer)
   that the marketing site doesn't. */

:root {
  --orange: #EE8A2B;
  --orange-dark: #d97c1f;
  --orange-tint: #FBEEDE;
  --ink: #1A1A1A;
  --cream: #FAF8F5;
  --muted: #57504A;
  --label: #8A8078;
  --border: #E8E2DA;
  --divider: #F0EBE4;
  --bg: var(--cream);
  --green: var(--orange); /* legacy alias so any stray references still resolve */
}

* { box-sizing: border-box; }

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  padding: 0 24px 60px;
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: 'JetBrains Mono', monospace; }

header {
  padding: 32px 0 8px;
  max-width: 900px;
  margin: 0 auto;
}

h1 { margin: 0; font-size: 26px; letter-spacing: -0.02em; }
h2 { letter-spacing: -0.01em; }
.subtitle { color: var(--muted); margin-top: 4px; }

main {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}

.card h2 { margin-top: 0; font-size: 18px; }

form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  gap: 6px;
  flex: 1 1 240px;
}

input, select {
  font-family: inherit;
}

input, select, textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
  font-weight: 400;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input::placeholder, textarea::placeholder {
  color: #B7AFA6;
}

input:hover, select:hover, textarea:hover {
  border-color: #D8CFC3;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%2357504A' stroke-width='2'%3E%3Cpath d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

textarea {
  font-family: inherit;
  resize: vertical;
  min-height: 84px;
  line-height: 1.5;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(238, 138, 43, 0.14);
}

input[type="color"] {
  padding: 3px;
  cursor: pointer;
}

input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--orange);
  cursor: pointer;
}

button {
  background: var(--orange);
  color: white;
  border: none;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease;
}

button:hover { background: var(--orange-dark); }
button:active { transform: translateY(1px); }

button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  padding: 9.5px 18.5px;
  font-weight: 500;
}

button.secondary:hover { background: var(--divider); border-color: var(--ink); }

button.secondary.small,
.account-bar button.secondary {
  padding: 6px 10px;
  font-size: 12px;
}

#new-result {
  margin-top: 16px;
}

#new-result img {
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 160px;
  height: 160px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

th, td {
  text-align: left;
  padding: 8px 6px;
  border-bottom: 1px solid var(--divider);
  font-size: 14px;
  vertical-align: middle;
}

th {
  color: var(--label);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: 'JetBrains Mono', monospace;
}

td.destination {
  max-width: 220px;
}
/* Non-url types are a single-line badge + summary and still get the
   truncating treatment; url-type cells have an input + hint stacked below,
   which needs to wrap rather than be clipped to one line. */
td.destination:not(:has(.dest-input)) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Editable destination field for 'url' type codes — used in both the table
   row (td.destination) and the card. Borderless at rest so it reads as text,
   but a visible dashed underline on hover/focus signals it's actually an
   editable field (there's no separate "Edit" button for this type — the
   field itself plus the "Save URL" button is the whole edit UI). */
.dest-input {
  width: 100%;
  border: none;
  border-bottom: 1px dashed transparent;
  background: transparent;
  padding: 0;
  font-family: inherit;
  color: inherit;
}
.dest-input:hover,
.dest-input:focus {
  border-bottom-color: var(--border);
  outline: none;
}

.dest-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}
.dest-hint strong {
  color: var(--label);
  font-weight: 600;
}

/* Workspace tabs (Team | API & Webhooks | Custom Domains) below the codes list */
.ws-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.ws-tab {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  border-radius: 0;
}
.ws-tab:hover { color: var(--orange); background: none; }
.ws-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  font-weight: 600;
}

/* Shared row styles used by the workspace tab panels (formerly inline on team.html) */
.team-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); gap: 12px; flex-wrap: wrap; }
.team-row:last-child { border-bottom: none; }
.team-row-meta { font-size: 13px; color: var(--muted); }
.seat-bar { height: 8px; border-radius: 4px; background: var(--border); overflow: hidden; margin: 8px 0 4px; max-width: 280px; }
.seat-bar-fill { height: 100%; background: var(--orange); }

td img.thumb {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid var(--border);
  cursor: pointer;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--ink); }

.muted { color: var(--label); font-weight: normal; font-size: 14px; }

.designer {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.designer-controls {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.designer-controls fieldset {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px 14px;
}

.designer-controls legend {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--label);
  font-family: 'JetBrains Mono', monospace;
  padding: 0 4px;
}

.designer-controls label {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
}

.designer-controls label.checkbox {
  justify-content: flex-start;
  gap: 8px;
}

.designer-controls select,
.designer-controls input[type="text"] {
  padding: 8px 10px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 13px;
  max-width: 170px;
}

.designer-controls select {
  background-size: 13px;
  background-position: right 9px center;
  padding-right: 28px;
}

.designer-controls input[type="color"] {
  width: 40px;
  height: 28px;
  padding: 2px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.designer-controls button.secondary {
  align-self: flex-start;
}

/* ---- Frame style picker ---- */

.frame-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.frame-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 4px 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--label);
  text-align: center;
}

.frame-option:hover { border-color: #D8CFC3; }

.frame-option.selected {
  border-color: var(--orange);
  background: var(--orange-tint);
  color: var(--orange-dark);
}

.frame-preview {
  width: 30px;
  height: 30px;
  border: 2.5px solid var(--ink);
  box-sizing: border-box;
}

.frame-preview-none {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--label);
}

.frame-preview-circle { border-radius: 50%; }

.frame-preview-badge {
  border-radius: 6px;
  position: relative;
}

.frame-preview-badge::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -7px;
  height: 4px;
  background: var(--ink);
  border-radius: 2px;
}

.frame-preview-border { border-radius: 5px; }

/* ---- Shape style quick-pick (dot + marker preset combos) ---- */

.shape-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.shape-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px 7px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--label);
}

.shape-option:hover { border-color: #D8CFC3; }

.shape-option.selected {
  border-color: var(--orange);
  background: var(--orange-tint);
  color: var(--orange-dark);
}

.shape-preview {
  width: 56px;
  height: 56px;
}

.shape-preview canvas, .shape-preview svg {
  width: 100% !important;
  height: 100% !important;
}

.designer-preview {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#qr-preview {
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#qr-preview canvas, #qr-preview img {
  max-width: 100%;
}

.designer-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.account-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.account-bar button.secondary {
  flex: none;
}

.notice {
  background: var(--orange-tint);
  border: 1px solid #F0D6AE;
  color: #8a5416;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-top: 12px;
}

.error {
  background: #fdecea;
  border: 1px solid #f3b4ae;
  color: #a12a22;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
}

.auth-main {
  max-width: 420px;
}

.auth-card form {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.auth-card form label {
  flex: none;
}

.auth-footer {
  margin-top: 16px;
  font-size: 13px;
}

.btn-google {
  width: 100%;
  gap: 10px;
  text-decoration: none;
  box-sizing: border-box;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.section-title-row h2 { margin: 0; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 200;
}

.modal-card {
  max-width: 480px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}

.bulk-row-ok { color: var(--orange-dark, #d97c1f); }
.bulk-row-err { color: #a12a22; }

/* The admin dashboard's tables (accounts especially, with 9 columns of
   inline controls) are cramped at the site's normal 900px content width —
   give admin pages more room on desktop. Other pages (app, marketing,
   auth) keep the default width. */
#admin-main {
  max-width: 1200px;
}

/* Wide data tables (accounts, codes, etc.) scroll horizontally inside their
   card on desktop/tablet if content still overflows at the wider width. */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table {
  min-width: 640px;
}

/* Below tablet width, a scrolling 9-column table is genuinely hard to use —
   thumb-scrolling sideways while also trying to tap a tiny date field or
   button doesn't work well. Instead, turn each row into a labeled card:
   every cell stacks full-width with its column header as a small label
   above it, so the whole table reads top-to-bottom like a list of records
   instead of sideways like a spreadsheet. */
@media (max-width: 860px) {
  .table-scroll {
    overflow-x: visible;
  }

  .table-scroll table {
    min-width: 0;
    width: 100%;
  }

  .table-scroll thead {
    display: none;
  }

  .table-scroll tbody,
  .table-scroll tr,
  .table-scroll td {
    display: block;
    width: 100%;
  }

  .table-scroll tr {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px 14px;
    margin-bottom: 12px;
  }

  .table-scroll tr:last-child {
    margin-bottom: 0;
  }

  .table-scroll td {
    border-bottom: 1px solid var(--divider);
    padding: 8px 0;
  }

  .table-scroll td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .table-scroll td:first-child {
    padding-top: 0;
  }

  .table-scroll td:empty {
    display: none;
  }

  .table-scroll td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--label);
    font-weight: 600;
    margin-bottom: 4px;
  }

  td.expiry-cell {
    padding-top: 8px;
  }

  .table-scroll td img.thumb {
    width: 64px;
    height: 64px;
  }
}

td.expiry-cell {
  vertical-align: top;
  padding-top: 12px;
}

.expiry-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
  margin-top: 6px;
}

/* Lighter-weight text buttons — these are frequent, low-stakes actions
   (extend a comp date), so they shouldn't compete visually with the
   bordered Save/Delete buttons in the row's action column. */
.quick-expiry {
  background: none;
  border: none;
  padding: 2px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--label);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.quick-expiry:hover {
  background: none;
  color: var(--orange-dark);
  text-decoration-color: var(--orange-dark);
}

.quick-expiry-clear {
  color: #a12a22;
}

.quick-expiry-clear:hover {
  color: #a12a22;
  text-decoration-color: #a12a22;
}

.expires-input {
  padding: 5px 7px;
  font-size: 12px;
  width: 128px;
  border-radius: 8px;
}

.billing-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.billing-period-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
}

.billing-period-toggle input {
  width: auto;
}

.secondary-link {
  font-size: 13px;
  margin-right: 12px;
  color: var(--muted);
}

.secondary-link:hover { color: var(--ink); }

code {
  background: var(--divider);
  padding: 1px 4px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
}

/* ---- Creation wizard ---- */

.wizard-steps {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--divider);
}

.wizard-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--label);
}

.wizard-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--label);
  font-size: 12px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.wizard-step.active {
  color: var(--ink);
  font-weight: 600;
}

.wizard-step.active .step-num {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.wizard-step.done .step-num {
  background: var(--orange-tint);
  border-color: var(--orange);
  color: var(--orange-dark);
}

.wizard-panel h2 {
  margin-top: 0;
}

/* Step 2 ("Additional Information") reads as one clean vertical form, not a
   wrapped row of odd-width fields — matches the reference "Enter your
   Website" full-width single-field layout even when a type has several
   fields (vCard, App smart link, etc). */
#create-form {
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}

#create-form label {
  flex: none;
  font-size: 13px;
}

#create-form input,
#create-form textarea {
  width: 100%;
  font-size: 15px;
  padding: 13px 15px;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.wizard-actions button:only-child {
  margin-left: auto;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.type-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  cursor: pointer;
}

.type-card.selected {
  border-color: var(--orange);
  background: var(--orange-tint);
}

.type-icon {
  font-size: 22px;
  color: var(--orange);
  width: 26px;
  text-align: center;
  flex: none;
}

.type-name {
  font-weight: 600;
  font-size: 14px;
}

.type-desc {
  font-size: 12px;
  color: var(--label);
}

#wizard-success img {
  width: 180px;
  height: 180px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 12px;
}

/* ---- Link Page's repeatable link-row editor ---- */

.linklist-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.linklist-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.link-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.link-row-label { flex: 1 1 140px; }
.link-row-url { flex: 2 1 220px; }

.link-row-remove {
  flex: none;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 10px;
}

.linklist-field > button.secondary {
  align-self: flex-start;
}

/* ---- Banned URLs (admin) ---- */

.banned-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 16px;
}

.badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--divider);
  color: var(--muted);
}

.badge.source-manual { background: var(--orange-tint); color: var(--orange-dark); }
.badge.source-feed { background: #eef0fb; color: #3d4a9e; }

/* ---- Codes table: non-URL type summary (see qr-types.js) ---- */

.badge.type-badge { background: var(--divider); color: var(--muted); margin-right: 6px; }

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

/* ---- Workspace switcher (team member with their own codes too) ---- */

.workspace-switcher-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 4px;
}

.workspace-switcher-label {
  font-size: 13px;
  color: var(--label);
}

.workspace-pill-group {
  display: inline-flex;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.workspace-pill {
  background: #FFFFFF;
  border: none;
  color: var(--muted);
  padding: 5px 12px;
  font-size: 12.5px;
  font-family: inherit;
  cursor: pointer;
}

.workspace-pill + .workspace-pill {
  border-left: 1.5px solid var(--border);
}

.workspace-pill:hover:not(.active) { background: var(--divider); }

.workspace-pill.active {
  background: var(--orange);
  color: #FFFFFF;
  font-weight: 600;
}

/* ---- List/Cards view toggle + Active/Archived tabs ---- */

.view-toggle {
  display: inline-flex;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.view-toggle-btn {
  background: #FFFFFF;
  border: none;
  color: var(--label);
  padding: 7px 11px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
}

.view-toggle-btn + .view-toggle-btn {
  border-left: 1.5px solid var(--border);
}

.view-toggle-btn:hover { background: var(--divider); }

.view-toggle-btn.active {
  background: var(--orange-tint);
  color: var(--orange-dark);
}

.codes-tabs {
  display: flex;
  gap: 4px;
  margin: 14px 0 16px;
  border-bottom: 1px solid var(--border);
}

.codes-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 8px 4px;
  margin-bottom: -1px;
  font-family: inherit;
  font-size: 14px;
  color: var(--label);
  cursor: pointer;
}

.codes-tab:hover { color: var(--ink); }

.codes-tab.active {
  color: var(--ink);
  border-bottom-color: var(--orange);
  font-weight: 600;
}

/* ---- Card view ---- */

.codes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.code-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.code-card-top {
  display: flex;
  gap: 12px;
}

.code-card-thumb {
  width: 56px;
  height: 56px;
  flex: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  object-fit: contain;
}

.code-card-info {
  min-width: 0;
  flex: 1;
}

.code-card-label {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-card-shorturl {
  display: block;
  font-size: 12.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-card-dest {
  font-size: 12.5px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 2px;
}

.code-card-dest-input {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

.code-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12.5px;
  color: var(--label);
}

.code-card-folder-select {
  font-size: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--label);
  max-width: 120px;
}

.code-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.code-card-actions button.secondary {
  padding: 5px 9px;
  font-size: 12px;
}
