/* ============================================================
   nightmachine.css — Grocery Inventory
   Theme: Industrial dark / terminal glow / machine aesthetic
   Fonts: Share Tech Mono (headers) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
    --black:       #0a0a0a;
    --surface-1:   #111111;
    --surface-2:   #1a1a1a;
    --surface-3:   #242424;
    --border:      #2e2e2e;
    --border-glow: #ff6347;

    --ember:       #ff6347;   /* primary accent — tomato */
    --ember-deep:  #cc3d24;   /* darker ember */
    --ember-glow:  rgba(255, 99, 71, 0.15);
    --ember-trace: rgba(255, 99, 71, 0.06);

    --green:       #39d353;   /* "in stock" status */
    --amber:       #f0a500;   /* "expiring soon" */
    --red:         #e53935;   /* "expired" / danger */
    --blue:        #4fc3f7;   /* info / links */

    --text-primary:   #f0ece6;
    --text-secondary: #8a8580;
    --text-muted:     #4a4845;

    --font-display: 'Share Tech Mono', monospace;
    --font-body:    'DM Sans', sans-serif;

    --radius:     4px;
    --radius-lg:  8px;
    --transition: 0.18s ease;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--black);
    background-image:
        radial-gradient(ellipse 80% 40% at 50% -10%, rgba(255,99,71,0.07) 0%, transparent 70%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255,255,255,0.012) 2px,
            rgba(255,255,255,0.012) 4px
        );
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    min-height: 100vh;
}

/* Subtle scan-line overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 3px,
        rgba(0,0,0,0.08) 3px,
        rgba(0,0,0,0.08) 4px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

h1 { font-size: 2rem;   line-height: 1.1; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.1rem;  color: var(--ember); }
h4 { font-size: 0.9rem;  color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.12em; }

p  { color: var(--text-secondary); }

a {
    color: var(--ember);
    text-decoration: none;
    transition: color var(--transition), text-shadow var(--transition);
}
a:hover {
    color: var(--text-primary);
    text-shadow: 0 0 12px var(--ember);
}

code, .mono {
    font-family: var(--font-display);
    font-size: 0.88em;
    color: var(--ember);
}

/* ─── Layout ─────────────────────────────────────────────── */
.page-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr;       gap: 16px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr;   gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

@media (max-width: 900px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ─── Header / Nav ───────────────────────────────────────── */
header {
    background: var(--surface-1);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.site-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ember);
    text-shadow: 0 0 20px rgba(255,99,71,0.5);
    letter-spacing: 0.08em;
}

.site-title span {
    color: var(--text-secondary);
    font-size: 0.75em;
}

nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

nav a {
    font-family: var(--font-display);
    font-size: 0.78rem;
    color: var(--text-secondary);
    padding: 6px 14px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all var(--transition);
}

nav a:hover, nav a.active {
    color: var(--ember);
    border-color: var(--border-glow);
    background: var(--ember-trace);
    text-shadow: 0 0 8px rgba(255,99,71,0.4);
}

/* ─── Cards ──────────────────────────────────────────────── */
.card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
    border-color: rgba(255,99,71,0.3);
    box-shadow: 0 0 20px rgba(255,99,71,0.05);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.card-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

/* Storage-specific card accents */
.card.fridge  { border-top: 2px solid var(--blue); }
.card.freezer { border-top: 2px solid #7986cb; }
.card.pantry  { border-top: 2px solid var(--amber); }

/* ─── Stat tiles (dashboard) ─────────────────────────────── */
.stat-tile {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all var(--transition);
}

.stat-tile:hover {
    background: var(--surface-3);
    border-color: rgba(255,99,71,0.25);
}

.stat-tile .label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.stat-tile .value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--ember);
    line-height: 1;
}

.stat-tile .sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ─── Tables ──────────────────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

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

thead {
    background: var(--surface-2);
}

thead th {
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

tbody tr {
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background var(--transition);
}

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

tbody tr:hover {
    background: rgba(255,99,71,0.04);
}

td {
    padding: 12px 16px;
    color: var(--text-primary);
    vertical-align: middle;
}

td.muted { color: var(--text-secondary); }

/* Inline editable cells */
td[contenteditable="true"] {
    outline: none;
    border-bottom: 1px dashed var(--border-glow);
    cursor: text;
}

td[contenteditable="true"]:focus {
    background: var(--ember-trace);
    border-radius: 2px;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--ember);
    color: #0a0a0a;
    border-color: var(--ember);
}
.btn-primary:hover {
    background: var(--text-primary);
    border-color: var(--text-primary);
    box-shadow: 0 0 16px rgba(255,99,71,0.4);
    color: #0a0a0a;
    text-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--ember);
    border-color: var(--ember);
}
.btn-outline:hover {
    background: var(--ember-glow);
    color: var(--text-primary);
    box-shadow: 0 0 12px rgba(255,99,71,0.2);
    text-shadow: none;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border);
}
.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
    background: var(--surface-2);
    text-shadow: none;
}

.btn-danger {
    background: transparent;
    color: var(--red);
    border-color: rgba(229,57,53,0.4);
}
.btn-danger:hover {
    background: rgba(229,57,53,0.12);
    border-color: var(--red);
    text-shadow: none;
}

.btn-sm { padding: 4px 10px; font-size: 0.7rem; }
.btn-lg { padding: 12px 28px; font-size: 0.85rem; }

/* Quantity +/- buttons */
.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.qty-control button {
    background: var(--surface-2);
    border: none;
    color: var(--ember);
    font-size: 1rem;
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: background var(--transition);
    font-family: var(--font-display);
}
.qty-control button:hover { background: var(--ember-glow); }
.qty-control .qty-value {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-primary);
    padding: 0 10px;
    min-width: 36px;
    text-align: center;
    background: var(--surface-1);
}

/* ─── Forms ───────────────────────────────────────────────── */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

input[type="text"],
input[type="number"],
input[type="date"],
input[type="search"],
select,
textarea {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 10px 14px;
    width: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--ember);
    box-shadow: 0 0 0 3px var(--ember-trace);
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff6347' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

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

input::placeholder { color: var(--text-muted); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Search bar */
.search-bar {
    position: relative;
    max-width: 420px;
}
.search-bar input {
    padding-left: 40px;
}
.search-bar::before {
    content: '⌕';
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
    pointer-events: none;
}

/* ─── Badges / Status ────────────────────────────────────── */
.badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    border: 1px solid;
}

.badge-fresh    { color: var(--green);  border-color: rgba(57,211,83,0.3);  background: rgba(57,211,83,0.08); }
.badge-expiring { color: var(--amber);  border-color: rgba(240,165,0,0.3);  background: rgba(240,165,0,0.08); }
.badge-expired  { color: var(--red);    border-color: rgba(229,57,53,0.3);  background: rgba(229,57,53,0.08); }
.badge-fridge   { color: var(--blue);   border-color: rgba(79,195,247,0.3); background: rgba(79,195,247,0.08);}
.badge-freezer  { color: #9fa8da;       border-color: rgba(159,168,218,0.3);background: rgba(159,168,218,0.08);}
.badge-pantry   { color: var(--amber);  border-color: rgba(240,165,0,0.3);  background: rgba(240,165,0,0.08); }

/* ─── Alerts / Flash messages ────────────────────────────── */
.alert {
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.85rem;
    border: 1px solid;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    animation: fadeSlideIn 0.25s ease;
}

.alert-success { color: var(--green); border-color: rgba(57,211,83,0.3); background: rgba(57,211,83,0.07); }
.alert-warning { color: var(--amber); border-color: rgba(240,165,0,0.3); background: rgba(240,165,0,0.07); }
.alert-danger  { color: var(--red);   border-color: rgba(229,57,53,0.3); background: rgba(229,57,53,0.07); }
.alert-info    { color: var(--blue);  border-color: rgba(79,195,247,0.3);background: rgba(79,195,247,0.07);}

/* ─── Page sections ──────────────────────────────────────── */
.page-header {
    padding: 32px 0 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.page-header h1 {
    line-height: 1;
}

.page-header h1 span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--ember);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.8;
}

main {
    padding: 0 24px 60px;
    max-width: 1280px;
    margin: 0 auto;
}

section {
    margin-bottom: 32px;
}

/* ─── Shopping list items ────────────────────────────────── */
.shopping-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background var(--transition);
}

.shopping-item:hover { background: var(--ember-trace); }

.shopping-item input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--surface-2);
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
}

.shopping-item input[type="checkbox"]:checked {
    background: var(--ember);
    border-color: var(--ember);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath fill='%230a0a0a' d='M1 4l3 3 5-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.shopping-item.checked .item-name {
    text-decoration: line-through;
    color: var(--text-muted);
}

.item-name {
    flex: 1;
    font-size: 0.9rem;
}

.item-meta {
    font-family: var(--font-display);
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ─── QR code grid ───────────────────────────────────────── */
.qr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.qr-tile {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    text-align: center;
    transition: all var(--transition);
}

.qr-tile:hover {
    border-color: rgba(255,99,71,0.4);
    box-shadow: 0 0 16px rgba(255,99,71,0.08);
}

.qr-tile img {
    width: 100%;
    max-width: 120px;
    border-radius: var(--radius);
    filter: invert(1) sepia(1) saturate(3) hue-rotate(330deg);  /* tints QR to ember color */
    margin-bottom: 8px;
}

.qr-tile .qr-name {
    font-family: var(--font-display);
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ─── Expiry indicator bar ───────────────────────────────── */
.expiry-bar {
    height: 3px;
    border-radius: 2px;
    background: var(--surface-3);
    overflow: hidden;
    margin-top: 4px;
}

.expiry-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 0.6s ease;
}
.expiry-bar-fill.fresh    { background: var(--green); }
.expiry-bar-fill.expiring { background: var(--amber); }
.expiry-bar-fill.expired  { background: var(--red); }

/* ─── AI suggestions panel ───────────────────────────────── */
.suggest-output {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-left: 3px solid var(--ember);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 20px 24px;
    font-size: 0.9rem;
    line-height: 1.75;
    min-height: 120px;
    color: var(--text-primary);
    white-space: pre-wrap;
    font-family: var(--font-body);
}

.suggest-output.loading {
    color: var(--text-muted);
    font-family: var(--font-display);
    font-size: 0.8rem;
    animation: pulse 1.4s ease infinite;
}

/* ─── Footer ──────────────────────────────────────────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

footer p {
    font-family: var(--font-display);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

footer a { font-size: 0.72rem; }

/* ─── Animations ─────────────────────────────────────────── */
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 8px rgba(255,99,71,0.4); }
    50%       { text-shadow: 0 0 20px rgba(255,99,71,0.8), 0 0 40px rgba(255,99,71,0.2); }
}

.glow { animation: glowPulse 3s ease infinite; }

/* Page load staggered reveal */
.reveal {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeSlideIn 0.35s ease forwards;
}
.reveal:nth-child(1) { animation-delay: 0.05s; }
.reveal:nth-child(2) { animation-delay: 0.10s; }
.reveal:nth-child(3) { animation-delay: 0.15s; }
.reveal:nth-child(4) { animation-delay: 0.20s; }
.reveal:nth-child(5) { animation-delay: 0.25s; }
.reveal:nth-child(6) { animation-delay: 0.30s; }

/* ─── Utilities ──────────────────────────────────────────── */
.flex         { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center  { display: flex; justify-content: center; align-items: center; }
.gap-8        { gap: 8px; }
.gap-12       { gap: 12px; }
.gap-16       { gap: 16px; }
.mt-8         { margin-top: 8px; }
.mt-16        { margin-top: 16px; }
.mt-24        { margin-top: 24px; }
.mb-16        { margin-bottom: 16px; }
.mb-24        { margin-bottom: 24px; }
.text-right   { text-align: right; }
.text-center  { text-align: center; }
.text-muted   { color: var(--text-muted); }
.text-ember   { color: var(--ember); }
.text-green   { color: var(--green); }
.text-amber   { color: var(--amber); }
.text-red     { color: var(--red); }
.mono         { font-family: var(--font-display); }
.w-full       { width: 100%; }
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 24px 0;
}

/* Print styles (for QR sheet) */
@media print {
    body { background: white; color: black; }
    body::before { display: none; }
    header, footer, nav, .btn { display: none; }
    .qr-tile img { filter: none; }
    .qr-tile { border: 1px solid #ccc; }
}

/* Storage rows (inside dashboard cards) */
.storage-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.85rem;
}
.storage-row:last-child { border-bottom: none; }
.storage-name { color: var(--text-primary); }
 
/* Quick action menu */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
@media (max-width: 900px) { .quick-actions { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .quick-actions { grid-template-columns: repeat(2, 1fr); } }
 
.qa-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 10px;
    text-decoration: none;
    transition: all var(--transition);
}
.qa-btn:hover {
    background: var(--surface-3);
    border-color: rgba(255,99,71,0.35);
    box-shadow: 0 0 16px rgba(255,99,71,0.06);
    text-shadow: none;
}
.qa-icon {
    font-size: 1.3rem;
    color: var(--ember);
    line-height: 1;
}
.qa-label {
    font-family: var(--font-display);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}
 
/* Section header */
.sec-header { margin-bottom: 16px; }
 
/* Nav badge (shopping count) */
.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ember);
    color: #0a0a0a;
    font-family: var(--font-display);
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-left: 4px;
    font-weight: normal;
}
 
/* Alert close button */
.alert { position: relative; }
.alert-close {
    background: none;
    border: none;
    color: currentColor;
    cursor: pointer;
    font-size: 1rem;
    margin-left: auto;
    opacity: 0.5;
    padding: 0 0 0 12px;
    line-height: 1;
}
.alert-close:hover { opacity: 1; }
 
/* Alert dot */
.alert-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}
 
/* Flash stack spacing */
.flash-stack { display: flex; flex-direction: column; gap: 8px; }
 
/* Badge freezer */
.badge-freezer {
    color: #9fa8da;
    border-color: rgba(159,168,218,0.3);
    background: rgba(159,168,218,0.08);
}

/* Form validation errors */
.form-error {
    display: block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    color: var(--red);
    margin-top: 4px;
    letter-spacing: 0.04em;
}
 
/* Check button in shopping list */
.check-btn:hover {
    background: var(--ember-glow) !important;
    border-color: var(--ember) !important;
}
 
/* Suggest output typewriter cursor */
.suggest-output:not(.loading)::after {
    content: '|';
    color: var(--ember);
    animation: pulse 0.8s ease infinite;
    margin-left: 1px;
}