/* =====================================================================
   SupaPOS - Application Stylesheet
   A clean, modern retail-software aesthetic: deep teal/navy primary,
   amber accent for attention states, generous spacing, rounded cards.
   ===================================================================== */

/* Respect the `hidden` attribute everywhere, no matter what other display
   rules a component defines. Without this, any element that both has a
   class setting display:flex/block/etc. AND the hidden attribute will
   incorrectly stay visible, because author CSS always outranks the
   browser's built-in [hidden] rule. This was hiding-then-un-hiding the
   payment/shift modals unintentionally. */
[hidden] { display: none !important; }

:root {
    --navy: #0f2942;
    --navy-light: #16395c;
    --teal: #0d9488;
    --teal-dark: #0b7a70;
    --amber: #f59e0b;
    --red: #dc2626;
    --green: #16a34a;
    --grey-50: #f8fafc;
    --grey-100: #f1f5f9;
    --grey-200: #e2e8f0;
    --grey-400: #94a3b8;
    --grey-600: #475569;
    --grey-800: #1e293b;
    --radius: 10px;
    --shadow: 0 1px 3px rgba(15, 41, 66, 0.08), 0 1px 2px rgba(15, 41, 66, 0.06);
    --shadow-lg: 0 10px 25px rgba(15, 41, 66, 0.12);
    font-size: 15px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--grey-50);
    color: var(--grey-800);
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { color: var(--navy); margin: 0 0 .5em; font-weight: 700; }
p { line-height: 1.55; }
.muted { color: var(--grey-600); }

/* ---------------- App shell ---------------- */
.app-shell { display: flex; min-height: 100vh; }

.sidebar {
    width: 255px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    z-index: 100;
}
.sidebar-brand {
    display: flex; align-items: center; gap: 12px; padding: 0 20px 18px; min-height: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 12px;
}
.brand-mark {
    width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; box-shadow: 0 4px 10px rgba(13,148,136,0.3);
}
.brand-mark-lg { width: 56px; height: 56px; font-size: 28px; border-radius: 14px; margin: 0 auto 10px; }
.brand-name { font-weight: 800; font-size: 18px; color: #fff; letter-spacing: -0.02em; }

.sidebar-nav {
    list-style: none; margin: 0; padding: 0 10px; flex: 1; overflow-y: auto;
}
.sidebar-nav::-webkit-scrollbar { width: 4px; }
.sidebar-nav::-webkit-scrollbar-track { background: transparent; }
.sidebar-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 999px; }
.sidebar-nav::-webkit-scrollbar-thumb:hover { background: var(--teal); }

.nav-item { margin-bottom: 4px; }
.nav-item-cta { margin-bottom: 12px; }

.sidebar-nav .nav-link {
    display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 10px; color: #94a3b8;
    font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s ease;
    position: relative;
}
.sidebar-nav .nav-link:hover { background: rgba(255,255,255,0.06); color: #f8fafc; }
.sidebar-nav .nav-link.active {
    background: rgba(13, 148, 136, 0.15); color: #38bdf8; font-weight: 700;
    border-left: 3px solid #0d9488; padding-left: 11px;
}

/* Glowing CTA Sales Terminal Button */
.sidebar-nav a.nav-highlight {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0f172a; font-weight: 800; box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
    border-radius: 10px;
}
.sidebar-nav a.nav-highlight:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.45); transform: translateY(-1px); color: #0f172a;
}
.cta-pulse {
    width: 8px; height: 8px; border-radius: 50%; background: #0f172a; margin-left: auto;
    animation: ctaPulse 2s infinite;
}
@keyframes ctaPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* Accordion Dropdown Styles */
.nav-dropdown-toggle {
    width: 100%; display: flex; align-items: center; gap: 12px; padding: 10px 14px;
    background: none; border: none; border-radius: 10px; color: #94a3b8; font-size: 14px;
    font-weight: 600; cursor: pointer; text-align: left; transition: all 0.2s ease;
}
.nav-dropdown-toggle:hover { background: rgba(255,255,255,0.06); color: #f8fafc; }
.nav-dropdown.open .nav-dropdown-toggle { color: #f8fafc; font-weight: 700; }

.nav-icon { font-size: 16px; display: inline-flex; align-items: center; justify-content: center; width: 22px; }
.nav-label { flex: 1; }

.chevron-icon {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); stroke: #64748b;
}
.nav-dropdown-toggle:hover .chevron-icon,
.nav-dropdown.open .chevron-icon { stroke: #cbd5e1; }
.nav-dropdown.open .chevron-icon { transform: rotate(180deg); }

.nav-dropdown-menu {
    list-style: none; margin: 0; padding: 4px 0 4px 18px;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}
.nav-dropdown.open .nav-dropdown-menu {
    max-height: 400px; opacity: 1;
}
.nav-dropdown-menu li { margin: 2px 0; }
.nav-dropdown-menu a {
    display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 8px;
    color: #94a3b8; font-size: 13.5px; font-weight: 500; text-decoration: none; transition: all 0.18s ease;
}
.sub-bullet {
    width: 5px; height: 5px; border-radius: 50%; background: #475569; transition: all 0.2s ease;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: #f1f5f9; }
.nav-dropdown-menu a:hover .sub-bullet { background: var(--teal); transform: scale(1.4); }
.nav-dropdown-menu a.active {
    background: rgba(13, 148, 136, 0.18); color: #2dd4bf; font-weight: 700;
}
.nav-dropdown-menu a.active .sub-bullet { background: #2dd4bf; box-shadow: 0 0 6px #2dd4bf; }

.app-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.app-content { padding: 24px 28px 60px; max-width: 1400px; }

/* ---------------- Topbar ---------------- */
.topbar {
    display: flex; align-items: center; gap: 18px; padding: 12px 24px;
    background: #fff; border-bottom: 1px solid var(--grey-200); position: sticky; top: 0; z-index: 20;
}
.topbar-spacer { flex: 1; }
.mobile-nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; }
.offline-indicator {
    background: #fff7ed; color: #9a3412; border: 1px solid #fed7aa; padding: 6px 12px;
    border-radius: 999px; font-size: 12.5px; font-weight: 600;
}
.notif-bell { position: relative; cursor: pointer; font-size: 18px; }
.notif-count {
    position: absolute; top: -6px; right: -10px; background: var(--red); color: #fff;
    font-size: 10px; font-weight: 700; border-radius: 999px; padding: 1px 5px; min-width: 16px; text-align: center;
}
.notif-dropdown {
    position: absolute; right: 0; top: 30px; width: 320px; max-height: 400px; overflow-y: auto;
    background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.notif-item { padding: 12px 14px; border-bottom: 1px solid var(--grey-100); font-size: 13px; }
.notif-item.unread { background: #f0fdfa; }
.notif-item .notif-title { font-weight: 700; color: var(--navy); }

.user-menu { display: flex; align-items: center; gap: 10px; }
.user-name { font-weight: 600; font-size: 14px; }
.user-role-badge {
    background: var(--grey-100); color: var(--grey-600); font-size: 11px; font-weight: 700;
    padding: 3px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: .03em;
}
.btn-link { background: none; border: none; color: var(--teal-dark); cursor: pointer; font-size: 14px; font-weight: 600; }
.inline-form { display: inline; }

/* ---------------- Alerts ---------------- */
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; font-weight: 500; }
.alert-success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-floating { position: fixed; top: 16px; right: 16px; z-index: 999; box-shadow: var(--shadow-lg); }

/* ---------------- Cards / grid ---------------- */
.card {
    background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius);
    padding: 20px; box-shadow: var(--shadow); margin-bottom: 20px;
}
.card-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 22px; }
.kpi-card { background: #fff; border: 1px solid var(--grey-200); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.kpi-value { font-size: 26px; font-weight: 800; color: var(--navy); }
.kpi-label { font-size: 12.5px; color: var(--grey-600); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.kpi-card.warn .kpi-value { color: var(--amber); }
.kpi-card.danger .kpi-value { color: var(--red); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ---------------- Tables ---------------- */
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--grey-100); }
th { color: var(--grey-600); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; background: var(--grey-50); }
tr:hover td { background: #fafcfe; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--grey-200); }
.table-wrap table { margin: 0; border: none; }
.table-wrap .card-title { padding: 16px 16px 0; }

/* ---------------- Badges / status pills ---------------- */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.badge-green { background: #dcfce7; color: #15803d; }
.badge-amber { background: #fef3c7; color: #92400e; }
.badge-red { background: #fee2e2; color: #b91c1c; }
.badge-grey { background: var(--grey-100); color: var(--grey-600); }
.badge-blue { background: #dbeafe; color: #1d4ed8; }

/* ---------------- Buttons ---------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px 18px; border-radius: 8px; border: none; cursor: pointer;
    font-size: 14px; font-weight: 600; transition: transform .05s ease, opacity .15s ease;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }
.btn-secondary { background: var(--grey-100); color: var(--grey-800); }
.btn-secondary:hover { background: var(--grey-200); }
.btn-danger { background: var(--red); color: #fff; }
.btn-amber { background: var(--amber); color: #1e293b; }
.btn-block { width: 100%; }
.btn-sm { padding: 6px 12px; font-size: 12.5px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------------- Forms ---------------- */
form label { display: block; margin-bottom: 14px; font-size: 13.5px; font-weight: 600; color: var(--grey-800); }
input, select, textarea {
    width: 100%; padding: 10px 12px; margin-top: 6px; border: 1px solid var(--grey-200);
    border-radius: 8px; font-size: 14px; font-family: inherit; background: #fff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.15); }
.form-row { display: flex; gap: 16px; }
.form-row > label { flex: 1; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.checkbox-label input { width: auto; margin: 0; }

/* ---------------- Auth page ---------------- */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.auth-card { background: #fff; padding: 40px 36px; border-radius: 16px; width: 380px; box-shadow: var(--shadow-lg); }
.auth-brand { text-align: center; margin-bottom: 24px; }
.auth-form label { margin-bottom: 16px; }
.auth-footer { text-align: center; margin-top: 18px; font-size: 12.5px; }

/* ---------------- Error pages ---------------- */
.error-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--grey-50); text-align: center; }
.error-box h1 { font-size: 64px; margin-bottom: 0; color: var(--teal); }

/* =====================================================================
   POS SALES TERMINAL - full screen by default, resizable
   ===================================================================== */
.pos-page { background: var(--grey-50); }
.pos-wrap {
    display: flex; height: 100vh; width: 100vw;
}
.pos-wrap.windowed { height: auto; min-height: 600px; width: 100%; max-width: 1400px; margin: 20px auto; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }

.pos-catalog { flex: 1 1 65%; display: flex; flex-direction: column; background: #fff; min-width: 0; }
.pos-cart { flex: 0 0 380px; background: var(--navy); color: #fff; display: flex; flex-direction: column; }

.pos-topbar { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--grey-200); }
.pos-scan-input { flex: 1; font-size: 16px; padding: 12px 14px; }
.pos-topbar .btn { flex-shrink: 0; }

.pos-categories { display: flex; gap: 8px; padding: 12px 18px; overflow-x: auto; border-bottom: 1px solid var(--grey-100); }
.cat-chip {
    flex-shrink: 0; padding: 7px 16px; border-radius: 999px; background: var(--grey-100);
    font-size: 13px; font-weight: 600; cursor: pointer; border: none; color: var(--grey-800);
}
.cat-chip.active { background: var(--teal); color: #fff; }

.pos-grid { flex: 1; overflow-y: auto; padding: 16px 18px; display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; align-content: start; }
.product-tile {
    background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: 12px; padding: 12px;
    cursor: pointer; text-align: left; transition: border-color .1s;
}
.product-tile:hover { border-color: var(--teal); }
.product-tile .p-name { font-weight: 700; font-size: 13.5px; display: block; margin-bottom: 4px; color: var(--navy); }
.product-tile .p-price { color: var(--teal-dark); font-weight: 700; font-size: 14px; }
.product-tile .p-stock { display: block; font-size: 11px; color: var(--grey-400); margin-top: 4px; }
.product-tile.low .p-stock { color: var(--amber); font-weight: 700; }

.pos-cart-header { padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; align-items: center; }
.pos-cart-header h3 { color: #fff; margin: 0; }
.pos-cart-items { flex: 1; overflow-y: auto; padding: 10px 14px; }
.cart-line { display: flex; justify-content: space-between; align-items: center; padding: 10px 6px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 13.5px; }
.cart-line .cl-name { font-weight: 600; }
.cart-line .cl-meta { color: #94a3b8; font-size: 11.5px; }
.cart-line .cl-qty-controls { display: flex; align-items: center; gap: 6px; }
.cart-line .cl-qty-controls button { background: rgba(255,255,255,.1); border: none; color: #fff; width: 22px; height: 22px; border-radius: 6px; cursor: pointer; }
.cart-line .cl-remove { background: none; border: none; color: #f87171; cursor: pointer; font-size: 15px; margin-left: 8px; }
.cart-empty { text-align: center; color: #64748b; padding: 40px 20px; font-size: 13.5px; }

.pos-cart-totals { padding: 14px 18px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13.5px; }
.totals-row { display: flex; justify-content: space-between; padding: 4px 0; }
.totals-row.grand { font-size: 20px; font-weight: 800; color: #fff; padding-top: 10px; border-top: 1px dashed rgba(255,255,255,.2); margin-top: 6px; }
.pos-pay-actions { padding: 14px 18px 18px; display: flex; flex-direction: column; gap: 10px; }
.pos-pay-actions .btn { padding: 14px; font-size: 15px; }

.fullscreen-toggle { position: fixed; bottom: 16px; right: 16px; z-index: 50; }

/* Modal */
.modal-backdrop { position: fixed; inset: 0; background: rgba(15,41,66,.5); display: flex; align-items: center; justify-content: center; z-index: 100; }
.modal { background: #fff; border-radius: var(--radius); padding: 24px; width: 420px; max-width: 92vw; box-shadow: var(--shadow-lg); }
.modal h3 { margin-top: 0; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }

/* Receipt */
.receipt { width: 320px; margin: 30px auto; background: #fff; padding: 20px; font-family: 'Courier New', monospace; font-size: 12.5px; border: 1px dashed var(--grey-400); }
.receipt h2 { text-align: center; font-size: 15px; }
.receipt .r-line { display: flex; justify-content: space-between; }
.receipt hr { border: none; border-top: 1px dashed var(--grey-400); }
@media print { .no-print { display: none !important; } .receipt { border: none; margin: 0; width: 100%; } }

/* Label / barcode print */
.label-sheet { width: 260px; margin: 30px auto; text-align: center; border: 1px solid var(--grey-200); padding: 16px; border-radius: 8px; }
.label-sheet .label-codes { display: flex; justify-content: center; gap: 14px; align-items: center; margin-top: 10px; }

/* Handover snapshot */
.snapshot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 14px; margin-bottom: 18px; }
.snapshot-item { background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: 8px; padding: 12px; }
.snapshot-item .sv { font-size: 20px; font-weight: 800; color: var(--navy); }
.snapshot-item .sl { font-size: 11.5px; color: var(--grey-600); text-transform: uppercase; font-weight: 700; }

.query-thread { margin-top: 10px; }
.query-msg { background: var(--grey-50); border-radius: 8px; padding: 10px 12px; margin-bottom: 8px; font-size: 13px; }
.query-msg.resolved { background: #f0fdf4; }
.query-msg .qm-meta { font-size: 11px; color: var(--grey-600); margin-bottom: 4px; }

/* Responsive */
@media (max-width: 960px) {
    .sidebar { position: fixed; left: -260px; top: 0; bottom: 0; z-index: 40; transition: left .2s; }
    .sidebar.open { left: 0; }
    .mobile-nav-toggle { display: block; }
    .pos-wrap { flex-direction: column; height: auto; }
    .pos-cart { flex: none; }
}

/* =====================================================================
   BRANDING & LOGO
   ===================================================================== */

/* Sidebar logo (replaces letter-mark when a logo is uploaded) */
.sidebar-logo {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Login page logo */
.auth-logo {
    max-width: 180px;
    max-height: 90px;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
    border-radius: 6px;
}

/* =====================================================================
   PRODUCT IMAGES — table thumbnail
   ===================================================================== */
.product-thumb-sm {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--grey-200);
}
.product-thumb-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: var(--grey-400);
    text-transform: uppercase;
    flex-shrink: 0;
}

/* =====================================================================
   PRODUCT IMAGES — form upload + preview
   ===================================================================== */
.form-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--grey-600);
    margin-bottom: 10px;
    padding-top: 4px;
    border-top: 1px solid var(--grey-100);
    padding-top: 12px;
}
.product-img-wrap { margin-bottom: 10px; }
.product-img-preview {
    max-width: 160px;
    max-height: 160px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 1px solid var(--grey-200);
    display: block;
    margin-bottom: 8px;
    transition: opacity .2s;
}

/* =====================================================================
   PRODUCT IMAGES — POS product tile
   ===================================================================== */
.p-thumb {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin: 0 auto 8px;
    border: 1px solid var(--grey-200);
}
.p-thumb-placeholder {
    width: 68px;
    height: 68px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--grey-100), var(--grey-200));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--grey-400);
    text-transform: uppercase;
    margin: 0 auto 8px;
    flex-shrink: 0;
}
/* Adjust tile min-height when images are shown to keep grid consistent */
.product-tile { min-height: 130px; }

/* =====================================================================
   RECEIPT LOGO
   ===================================================================== */
.receipt-logo-wrap { text-align: center; margin-bottom: 8px; }
.receipt-logo {
    max-width: 130px;
    max-height: 65px;
    object-fit: contain;
    display: inline-block;
}
@media print {
    .receipt-logo { max-width: 110px; max-height: 55px; }
}

/* =====================================================================
   SETTINGS — Branding card
   ===================================================================== */
.branding-card { grid-column: 1 / -1; } /* Full width on the grid */
.logo-preview-wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}
.settings-logo-preview {
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    padding: 8px;
    background: var(--grey-50);
    transition: opacity .2s;
}
.settings-logo-placeholder {
    width: 160px;
    height: 80px;
    border: 2px dashed var(--grey-200);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-400);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}
