:root {
    --bg-top: #f8f3eb;
    --bg-bottom: #eef4e6;
    --panel: #ffffff;
    --surface-soft: #fbf8f1;
    --text: #222018;
    --muted: #6d6758;
    --line: #e4dece;
    --brand: #355d3c;
    --accent: #d48328;
    --red: #b3261e;
    --yellow: #a36b00;
    --green: #27713d;
}

* {
    box-sizing: border-box;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
    background:
        radial-gradient(circle at 10% 0%, rgba(212, 131, 40, 0.16), transparent 38%),
        radial-gradient(circle at 90% 100%, rgba(53, 93, 60, 0.16), transparent 36%),
        linear-gradient(160deg, var(--bg-top), var(--bg-bottom));
    min-height: 100vh;
    padding: 20px 16px 28px;
}

.main,
.wrap,
.container {
    max-width: 1100px;
    margin: 0 auto;
}

.main {
    max-width: 1180px;
}

.global-nav {
    max-width: 1100px;
    margin: 0 auto 14px;
    padding: 8px;
    border-radius: 12px;
    border: 1px solid #d9d2c3;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(4px);
}

.global-nav-bar {
    display: none;
}

.global-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #d9d2c3;
    border-radius: 12px;
    background: #fff;
    color: var(--text);
    cursor: pointer;
}

.global-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.global-nav.is-open .global-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.global-nav.is-open .global-nav-toggle span:nth-child(2) {
    opacity: 0;
}

.global-nav.is-open .global-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.global-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.global-nav a {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 9px;
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.global-nav a:hover {
    background: #f4efe2;
    border-color: #e3d9c3;
}

.global-nav a.active {
    background: #eef4e6;
    color: var(--brand);
    border-color: #c9dbc4;
}

.top,
.topbar,
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.page-title {
    margin: 0;
    font-size: 22px;
}

.head-actions,
.btnbar,
.actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.section-head,
.table-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.section-head {
    margin-bottom: 12px;
}

.table-actions {
    justify-content: flex-start;
}

.table-inline-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.table-inline-actions form {
    margin: 0;
}

.table-inline-actions .action-select,
.table-inline-actions select {
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid #d8d1c3;
    border-radius: 10px;
    background: #fff;
    font: inherit;
    color: var(--text);
}

.actions .btn2 {
    padding: 8px 10px;
}

.btnbar.no-top {
    margin-top: 0;
}

.btn,
.btn2,
.trash {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 10px 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover,
.btn2:hover,
.trash:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.btn {
    background: var(--brand);
    color: #fff;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: var(--text);
    border-color: var(--line);
}

.btn2 {
    background: #fff;
    color: var(--text);
    border-color: var(--line);
}

.trash {
    border-color: #dcc9c4;
    color: #a2352a;
    background: #fff;
    min-width: 74px;
}

.card,
.hero,
.feature,
.title-box,
.col {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(40, 28, 8, 0.06);
}

.card,
.title-box,
.hero,
.feature {
    margin-bottom: 14px;
}

.title-box h1,
.hero h1 {
    margin: 0;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.08;
}

.kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    background: rgba(53, 93, 60, 0.1);
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 14px;
}

.lead,
.muted,
.help,
.section-note,
.feature p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.lead {
    font-size: 15px;
    max-width: 720px;
}

label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    line-height: 1.25;
}

form {
    margin: 0;
}

/* Unified field layout across all forms and form-like cards */
form .grid > div,
form .row > div,
form .row-1 > div,
form .grid-material > div,
.card .grid > div,
.card .row > div,
.card .row-1 > div,
.card .grid-material > div,
.card .lineGrid > div {
    display: flex;
    flex-direction: column;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d8d1c3;
    border-radius: 10px;
    font: inherit;
    color: var(--text);
    background: #fffdfb;
    min-height: 42px;
}

/* Keep checkbox/radio controls native-sized instead of text-field dimensions */
input[type="checkbox"],
input[type="radio"] {
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(53, 93, 60, 0.18);
}

textarea {
    min-height: 92px;
    padding-top: 10px;
    resize: vertical;
}

button.btn,
button.btn2,
button.trash,
a.btn,
a.btn2 {
    min-height: 42px;
}

/* Keep action groups visually aligned and consistent */
form .btnbar,
.card .btnbar {
    margin-top: 14px;
    padding-top: 8px;
}

.grid > .btn,
.grid > .btn2,
.grid > button,
.lineGrid > .btn,
.lineGrid > .btn2,
.lineGrid > button {
    align-self: end;
}

.row,
.grid,
.grid-material,
.row-1,
.stats,
.cards,
.lineGrid,
.board {
    display: grid;
    gap: 12px;
}

.row,
.grid {
    grid-template-columns: 1fr 1fr;
}

.row-1 {
    grid-template-columns: 1fr;
}

.line {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    margin-top: 10px;
    background: linear-gradient(140deg, #fffdf8, var(--surface-soft));
}

.lineHead {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.lineGrid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr auto;
    align-items: end;
}

.orderLineGrid {
    grid-template-columns: 1.6fr 1fr auto;
    align-items: end;
    gap: 14px;
}

.orderLineGrid .lineAction {
    display: flex;
    align-items: flex-end;
}

.orderLineGrid .lineAction .btn2 {
    margin-top: 0;
}

.grid-material {
    grid-template-columns: 1.2fr .8fr .8fr .8fr .8fr auto;
    align-items: end;
}

.cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stats {
    grid-template-columns: 1fr 1fr;
}

.stat {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fbf8f1;
}

.big,
.value {
    font-weight: 800;
    color: var(--accent);
}

.big {
    margin-top: 4px;
    font-size: 24px;
}

.value {
    margin: 6px 0 0;
    font-size: 30px;
}

.label,
th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

th,
td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

th {
    background: #f8f5ee;
}

.msg {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    display: none;
}

.msg.error {
    display: block;
    background: #fff0ee;
    color: var(--red);
    border: 1px solid #f1b8b2;
}

.msg.warn {
    display: block;
    background: #fff8e6;
    color: var(--yellow);
    border: 1px solid #ead08b;
}

.msg.ok {
    display: block;
    background: #e9f7ee;
    color: var(--green);
    border: 1px solid #b8dfc5;
}

.badge,
.pill {
    display: inline-flex;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.new {
    background: #e8f0fe;
    color: #174ea6;
}

.packing {
    background: #fff8e6;
    color: #8a5a00;
}

.send {
    background: #e9f5ff;
    color: #075985;
}

.success,
.safe {
    background: #e9f7ee;
    color: var(--green);
}

.canceled,
.critical {
    background: #fff0ee;
    color: var(--red);
}

.low {
    background: #fff8e6;
    color: var(--yellow);
}

.board-wrap {
    overflow-x: auto;
    padding-bottom: 6px;
}
.board {
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    min-width: 1060px;
}

.col h3 {
    margin: 0 0 10px;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--muted);
}

.order {
    background: #fbf8f1;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: grab;
}

.order strong {
    display: block;
    margin-bottom: 6px;
}

.items {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.cancel {
    width: 100%;
    margin-top: 10px;
    color: var(--red);
}

.type {
    font-weight: 800;
}

.m-0 {
    margin: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-12 {
    margin-top: 12px;
}

.mb-0 {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-material {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-width: 0;
    }
}

@media (max-width: 900px) {
    body {
        padding: 16px 12px 24px;
    }

    .global-nav {
        padding: 10px;
    }

    .global-nav-bar {
        display: flex;
        justify-content: flex-end;
    }

    .global-nav-toggle {
        display: inline-flex;
    }

    .global-nav-list {
        display: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 10px;
    }

    .global-nav.is-open .global-nav-list {
        display: grid;
    }

    .global-nav a {
        width: 100%;
        justify-content: center;
        text-align: center;
        min-height: 44px;
    }

    .top,
    .topbar,
    header,
    .lineHead,
    .section-head {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .head-actions,
    .btnbar,
    .actions,
    .table-actions,
    .scanner-search-wrap {
        width: 100%;
    }

    .head-actions > *,
    .btnbar > *,
    .actions > *,
    .table-actions > * {
        flex: 0 1 auto;
    }

    .btn,
    .btn2,
    .trash {
        white-space: normal;
    }

    .grid,
    .row,
    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .lineGrid,
    .grid-material {
        grid-template-columns: 1fr 1fr;
    }

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .board {
        grid-template-columns: 1fr;
        min-width: 0;
    }

    table:not(.table-mobile) {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .card,
    .hero,
    .feature,
    .title-box,
    .col {
        padding: 16px;
    }

    .main {
        padding: 0;
    }
}

@media (max-width: 680px) {
    .global-nav-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards,
    .stats {
        grid-template-columns: 1fr;
    }

    .card,
    .hero,
    .feature,
    .title-box,
    .col,
    .auth-card {
        padding: 12px;
        border-radius: 12px;
    }

    .top,
    .topbar,
    header,
    .section-head {
        gap: 8px;
        margin-bottom: 10px;
    }

    .page-title,
    .main h1,
    .main h2 {
        font-size: 21px;
        line-height: 1.2;
        margin: 0;
    }

    .main h3,
    .card h3,
    .section-head h3,
    .top h3,
    .topbar h3 {
        font-size: 17px;
        line-height: 1.25;
        margin: 0;
    }

    .grid,
    .row,
    .grid-material,
    .row-1,
    .lineGrid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    label {
        font-size: 11px;
        margin-bottom: 4px;
        letter-spacing: 0.04em;
    }

    input,
    select,
    textarea {
        min-height: 36px;
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 13px;
    }

    textarea {
        min-height: 72px;
    }

    .btn,
    .btn2,
    .trash,
    button.btn,
    button.btn2,
    button.trash,
    a.btn,
    a.btn2 {
        min-height: 36px;
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 13px;
    }

    .btnbar,
    form .btnbar,
    .card .btnbar {
        margin-top: 10px;
        padding-top: 2px;
        gap: 8px;
    }

    .head-actions,
    .btnbar,
    .actions,
    .table-actions,
    .scanner-search-wrap {
        width: 100%;
    }

    .head-actions > *,
    .btnbar > *,
    .actions > *,
    .table-actions > * {
        flex: 1 1 140px;
    }

    .table-inline-actions {
        display: flex;
        gap: 5px;
        flex-wrap: nowrap;
    }

    .table-inline-actions .btn2,
    .table-inline-actions button.btn2,
    .table-inline-actions .action-select,
    .table-inline-actions select {
        min-height: 32px;
        padding: 5px 8px;
        font-size: 11px;
        white-space: nowrap;
    }

    table th,
    table td {
        padding: 7px 8px;
        font-size: 11px;
        line-height: 1.3;
    }

    table th {
        font-size: 10px;
    }

    .table-mobile {
        display: table;
        width: 100%;
        min-width: 0;
        table-layout: auto;
        border-radius: 10px;
        border: 1px solid #eee6d8;
        border-collapse: separate;
        border-spacing: 0;
    }

    .card > .table-mobile,
    .card table.table-mobile {
        display: table;
        width: 100%;
        max-width: 100%;
    }

    .table-mobile thead {
        background: #f8f5ee;
    }

    .table-mobile th,
    .table-mobile td {
        white-space: nowrap;
        word-break: normal;
        overflow-wrap: normal;
        padding: 7px 8px;
        font-size: 11px;
        line-height: 1.3;
        border-bottom: 1px solid #eee;
        vertical-align: middle;
    }

    .table-mobile th {
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .table-mobile td::before {
        content: none;
    }

    .table-mobile td .actions,
    .table-mobile td .table-actions {
        display: flex;
        gap: 6px;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
    }

    .table-mobile th:nth-last-child(1),
    .table-mobile td:nth-last-child(1) {
        text-align: right;
    }

    .table-mobile td.group-header,
    .table-mobile td[colspan].group-header {
        text-align: left;
    }

    .table-mobile th:nth-last-child(2),
    .table-mobile td:nth-last-child(2) {
        text-align: center;
    }

    .table-mobile td .btn,
    .table-mobile td .btn2,
    .table-mobile td .trash,
    .table-mobile td button.btn,
    .table-mobile td button.btn2,
    .table-mobile td button.trash {
        min-height: 32px;
        padding: 6px 10px;
        font-size: 12px;
        white-space: nowrap;
        min-width: 88px;
    }
}

@media (max-width: 420px) {
    .card,
    .hero,
    .feature,
    .title-box,
    .col,
    .auth-card {
        padding: 10px;
    }

    .top,
    .topbar,
    header,
    .section-head {
        gap: 6px;
        margin-bottom: 8px;
    }

    .page-title,
    .main h1,
    .main h2 {
        font-size: 19px;
    }

    .main h3,
    .card h3,
    .section-head h3,
    .top h3,
    .topbar h3 {
        font-size: 15px;
    }

    label {
        font-size: 10px;
    }

    input,
    select,
    textarea {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 12px;
    }

    textarea {
        min-height: 64px;
    }

    .btn,
    .btn2,
    .trash,
    button.btn,
    button.btn2,
    button.trash,
    a.btn,
    a.btn2 {
        min-height: 34px;
        padding: 7px 9px;
        font-size: 12px;
    }

    table th,
    table td,
    .table-mobile th,
    .table-mobile td {
        padding: 6px 7px;
        font-size: 10px;
    }

    .table-mobile td .btn,
    .table-mobile td .btn2,
    .table-mobile td .trash,
    .table-mobile td button.btn,
    .table-mobile td button.btn2,
    .table-mobile td button.trash {
        min-width: 82px;
    }

    .table-mobile th {
        font-size: 10px;
    }

    .table-mobile td .btn,
    .table-mobile td .btn2,
    .table-mobile td .trash,
    .table-mobile td button.btn,
    .table-mobile td button.btn2,
    .table-mobile td button.trash {
        min-height: 30px;
        padding: 5px 8px;
        font-size: 11px;
    }
}

/* ── Pagination ── */
.pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}
.pagination .page-info {
    font-size: .85rem;
    color: var(--muted);
    margin-right: 6px;
}

/* ── Deadline badges ── */
.deadline-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 99px;
    white-space: nowrap;
}
.deadline-safe   { background: #e9f7ee; color: #27713d; }
.deadline-warn   { background: #fff8e6; color: #a36b00; }
.deadline-overdue { background: #fff0ee; color: #b3261e; }

/* ── Scanner modal ── */
.scanner-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scanner-modal-inner {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    width: min(480px, 95vw);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.scanner-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
}
.scanner-close-btn {
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: var(--muted);
    padding: 0 4px;
}
#scanner-video {
    width: 100%;
    border-radius: 8px;
    background: #000;
    max-height: 280px;
    object-fit: cover;
}
.scanner-status {
    font-size: .85rem;
    color: var(--muted);
    text-align: center;
    margin: 0;
}
.scanner-search-wrap {
    display: flex;
    gap: 8px;
    align-items: center;
}
.scanner-search-wrap input {
    flex: 1;
}

/* ── Kanban col-more notice ── */
.col-more {
    font-size: .8rem;
    color: var(--muted);
    text-align: center;
    padding: 6px 0 0;
    margin: 0;
}

/* ── Reports page ── */
.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.report-desc {
    font-size: .9rem;
    color: var(--muted);
    margin: 0 0 8px;
}
.hint {
    font-size: .8rem;
    color: var(--muted);
    margin: 6px 0 0;
    font-style: italic;
}

/* ── Auth page ── */
.auth-wrap {
    min-height: calc(100vh - 48px);
    display: grid;
    place-items: center;
    padding: 24px;
}

.auth-card {
    width: 100%;
    max-width: 450px;
    padding: 24px;
    animation: authCardIn .42s ease-out both;
}

.auth-head {
    margin-bottom: 16px;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.auth-brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    background: linear-gradient(135deg, #2f6640, #d48328);
    box-shadow: 0 8px 16px rgba(53, 93, 60, 0.25);
}

.auth-brand-text {
    margin: 0;
    color: var(--brand);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 12px;
}

.auth-title {
    margin: 0 0 6px;
    font-size: 33px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.auth-form {
    display: grid;
    gap: 14px;
}

.auth-password-wrap {
    position: relative;
}

.auth-password-wrap input {
    padding-right: 78px;
}

.auth-toggle {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    min-height: 30px;
    cursor: pointer;
}

.auth-toggle:hover {
    color: var(--brand);
    border-color: #c9dbc4;
    background: #f7fbf3;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}

.auth-remember input {
    accent-color: var(--brand);
    width: 16px;
    height: 16px;
}

.auth-actions {
    margin-top: 4px;
}

@keyframes authCardIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.992);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 540px) {
    body {
        padding-inline: 10px;
    }

    .auth-wrap {
        padding: 16px;
    }

    .auth-card {
        padding: 18px;
    }

    .auth-title {
        font-size: 28px;
    }

    .global-nav-list {
        grid-template-columns: 1fr;
    }

    .global-nav-bar {
        justify-content: flex-start;
    }
}
