:root {
    --sz-sidebar-width: 280px;
    --sz-sidebar-collapsed-width: 82px;
    --sz-bg: #f1f5f9;
    --sz-surface: #ffffff;
    --sz-surface-soft: #f8fafc;
    --sz-border: #dbe3ef;
    --sz-text: #0f172a;
    --sz-muted: #64748b;
    --sz-primary: #2563eb;
    --sz-primary-dark: #1d4ed8;
    --sz-primary-soft: #eff6ff;
    --sz-sidebar: #f8fafc;
    --sz-sidebar-border: #e2e8f0;
    --sz-radius: 18px;
    --sz-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background: var(--sz-bg);
    color: var(--sz-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Layout */

.sz-shell {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}

.sz-sidebar {
    width: var(--sz-sidebar-width);
    min-height: 100vh;
    background: var(--sz-sidebar);
    color: var(--sz-text);
    position: fixed;
    inset: 0 auto 0 0;
    border-right: 1px solid var(--sz-sidebar-border);
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    transition: width .18s ease;
    z-index: 20;
}

.sz-main {
    margin-left: var(--sz-sidebar-width);
    width: calc(100% - var(--sz-sidebar-width));
    min-height: 100vh;
    transition: margin-left .18s ease, width .18s ease;
}

body.sz-sidebar-collapsed .sz-sidebar {
    width: var(--sz-sidebar-collapsed-width);
}

body.sz-sidebar-collapsed .sz-main {
    margin-left: var(--sz-sidebar-collapsed-width);
    width: calc(100% - var(--sz-sidebar-collapsed-width));
}

.sz-content {
    padding: 18px;
}

/* Brand */

.sz-brand {
    height: 82px;
    padding: 0 14px 0 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--sz-sidebar-border);
    background: #ffffff;
}

.sz-brand-text {
    min-width: 0;
    flex: 1;
    transition: opacity .14s ease, width .14s ease;
}

.sz-sidebar-toggle {
    width: 34px;
    height: 34px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    color: var(--sz-primary);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    line-height: 1;
    transition: all .16s ease;
}

    .sz-sidebar-toggle:hover {
        background: var(--sz-primary);
        color: #ffffff;
        box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
    }

.sz-sidebar-toggle-icon {
    font-size: 24px;
    transform: translateY(-1px);
    transition: transform .18s ease;
}

body.sz-sidebar-collapsed .sz-sidebar-toggle-icon {
    transform: rotate(180deg) translateY(1px);
}

body.sz-sidebar-collapsed .sz-brand {
    justify-content: center;
    padding-inline: 12px;
}

body.sz-sidebar-collapsed .sz-brand-text {
    display: none;
}

body.sz-sidebar-collapsed .sz-brand {
    height: 96px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
}

body.sz-sidebar-collapsed .sz-brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 13px;
}

body.sz-sidebar-collapsed .sz-sidebar-toggle {
    position: static;
    width: 30px;
    height: 30px;
    min-width: 30px;
}

.sz-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: -.04em;
    box-shadow: 0 12px 28px rgba(37, 99, 235, .22);
}

.sz-brand-name {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
}

.sz-brand-subtitle {
    font-size: 12px;
    color: #64748b;
}

/* Sidebar menu */

.sz-nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    color: #334155;
    text-decoration: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    transition: all .16s ease;
}

    .sz-nav-link:hover {
        background: #eef4ff;
        color: #0f172a;
    }

    .sz-nav-link.active {
        background: #ffffff;
        color: var(--sz-primary);
        border: 1px solid #dbeafe;
        box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    }

        .sz-nav-link.active::before {
            content: "";
            position: absolute;
            left: -7px;
            top: 10px;
            bottom: 10px;
            width: 4px;
            border-radius: 999px;
            background: var(--sz-primary);
        }

    .sz-nav-link.disabled {
        opacity: .55;
        pointer-events: none;
    }

.sz-nav-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .20);
    transition: all .16s ease;
    font-size: 18px;
    font-weight: 800;
}

.sz-nav-link:hover .sz-nav-icon {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(37, 99, 235, .28);
}

.sz-nav-link.active .sz-nav-icon {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.sz-nav-icon img {
    width: 23px;
    height: 23px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.sz-nav {
    padding: 16px 14px 24px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.sz-nav-collapse-toggle {
    min-height: 48px;
    width: 100%;
    border: 0;
    background: transparent;
    color: #334155;
    border-radius: 14px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    transition: all .16s ease;
}

    .sz-nav-collapse-toggle:hover {
        background: #eef4ff;
        color: #0f172a;
    }

    .sz-nav-collapse-toggle:not(.collapsed) {
        background: #ffffff;
        color: var(--sz-primary);
        border: 1px solid #dbeafe;
        box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    }

.sz-nav-collapse-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

    .sz-nav-collapse-title > span:last-child {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.sz-nav-collapse-chevron {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    background: #f8fafc;
    transition: all .16s ease;
}

.sz-nav-collapse-toggle:hover .sz-nav-collapse-chevron,
.sz-nav-collapse-toggle:not(.collapsed) .sz-nav-collapse-chevron {
    color: var(--sz-primary);
    background: #eff6ff;
}

.sz-nav-collapse-chevron i {
    font-size: 12px;
    transition: transform .16s ease;
}

.sz-nav-collapse-toggle:not(.collapsed) .sz-nav-collapse-chevron i {
    transform: rotate(180deg);
}

.sz-nav-collapse {
    padding-left: 12px;
    margin-left: 19px;
    border-left: 1px solid #dbeafe;
}

/* Topbar */

.sz-topbar {
    min-height: 82px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--sz-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.sz-page-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.sz-page-subtitle {
    font-size: 13px;
    color: var(--sz-muted);
    margin-top: 2px;
}

.sz-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sz-user-box {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #ffffff;
    color: #0f172a;
    border: 1px solid var(--sz-border);
    border-radius: 999px;
    padding: 7px 14px 7px 7px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .07);
}

.sz-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.sz-user-name {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
}

.sz-user-role {
    font-size: 11px;
    color: var(--sz-muted);
}

.sz-logout-btn {
    border-color: #cbd5e1;
    color: #334155;
    background: #ffffff;
    border-radius: 999px;
    padding-inline: 16px;
}

/* Page content */

.page-header {
    margin-bottom: 24px;
}

    .page-header h1 {
        font-size: 30px;
        font-weight: 850;
        letter-spacing: -.04em;
        margin: 0 0 8px;
    }

    .page-header p {
        color: var(--sz-muted);
        margin: 0;
    }

.sz-card {
    background: var(--sz-surface);
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    box-shadow: var(--sz-shadow);
}

.sz-dashboard-hero {
    padding: 34px;
    overflow: hidden;
    position: relative;
}

    .sz-dashboard-hero::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        right: -90px;
        top: -90px;
        background: radial-gradient(circle, rgba(37, 99, 235, .14), transparent 70%);
    }

    .sz-dashboard-hero h2 {
        font-size: 26px;
        font-weight: 850;
        letter-spacing: -.03em;
        margin-bottom: 10px;
    }

    .sz-dashboard-hero p {
        max-width: 720px;
        color: var(--sz-muted);
        margin: 0;
    }

.sz-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.sz-kpi {
    padding: 20px;
}

.sz-kpi-label {
    color: var(--sz-muted);
    font-size: 13px;
    font-weight: 700;
}

.sz-kpi-value {
    font-size: 28px;
    font-weight: 850;
    margin-top: 8px;
}

.sz-kpi-note {
    color: var(--sz-muted);
    font-size: 12px;
    margin-top: 4px;
}

body.sz-sidebar-collapsed .sz-nav {
    padding-inline: 10px;
}

body.sz-sidebar-collapsed .sz-nav-link {
    justify-content: center;
    padding-inline: 8px;
}

    body.sz-sidebar-collapsed .sz-nav-link > span:not(.sz-nav-icon) {
        display: none;
    }

body.sz-sidebar-collapsed .sz-nav-section,
body.sz-sidebar-collapsed .sz-nav-collapse-toggle {
    display: none;
}

body.sz-sidebar-collapsed .sz-nav-collapse {
    padding-left: 0;
}

body.sz-sidebar-collapsed .collapse:not(.show),
body.sz-sidebar-collapsed .collapsing {
    display: block !important;
    height: auto !important;
}

body.sz-sidebar-collapsed .sz-nav-link.active::before {
    left: -5px;
}

/* Forms / buttons / tables */

.form-control,
.form-select {
    border-color: var(--sz-border);
    border-radius: 12px;
}

.form-label {
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 6px;
}

.modal .form-label {
    color: #1e293b;
}

.modal-header {
    background: #f8fafc;
    border-bottom: 1px solid #dbe3ef;
}

.modal-title {
    font-weight: 850;
    color: #0f172a;
}

.modal .table thead th {
    background: #f1f5f9;
    color: #1e293b;
    font-weight: 850;
}
    .form-control:focus,
    .form-select:focus {
        border-color: var(--sz-primary);
        box-shadow: 0 0 0 .22rem rgba(37, 99, 235, .14);
    }

.btn {
    border-radius: 12px;
    font-weight: 700;
}

.btn-primary {
    background: var(--sz-primary);
    border-color: var(--sz-primary);
}

    .btn-primary:hover {
        background: var(--sz-primary-dark);
        border-color: var(--sz-primary-dark);
    }

.table {
    vertical-align: middle;
}

    .table thead th {
        color: #334155;
        background: #f8fafc;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .07em;
        border-bottom: 1px solid #cbd5e1;
        white-space: nowrap;
    }

        .table thead th:first-child {
            border-top-left-radius: 10px;
        }

        .table thead th:last-child {
            border-top-right-radius: 10px;
        }

/* Tab workspace */

.sz-tabs-shell {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sz-tabs-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--sz-border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

.sz-tab-button {
    min-height: 42px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--sz-muted);
    border-radius: 14px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: all .16s ease;
}

    .sz-tab-button:hover {
        background: var(--sz-surface-soft);
        color: var(--sz-text);
    }

    .sz-tab-button.active {
        background: #ffffff;
        color: var(--sz-primary);
        border-color: var(--sz-border);
        box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
    }

.sz-tab-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(37, 99, 235, .18);
}

    .sz-tab-icon i {
        font-size: 13px;
        line-height: 1;
    }

.sz-tab-button.active .sz-tab-icon {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.sz-tab-close {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sz-muted);
    font-size: 18px;
    line-height: 1;
}

    .sz-tab-close:hover {
        background: #fee2e2;
        color: #b91c1c;
    }

.sz-tabs-content {
    min-height: calc(100vh - 180px);
}

.sz-tab-panel {
    display: none;
}

    .sz-tab-panel.active {
        display: block;
    }

.sz-tab-loading {
    background: #ffffff;
    border: 1px solid var(--sz-border);
    border-radius: var(--sz-radius);
    padding: 24px;
    color: var(--sz-muted);
    box-shadow: var(--sz-shadow);
}

/* Auth */

.auth-body {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, .30), transparent 28rem), linear-gradient(135deg, #0b1220 0%, #111827 48%, #1d4ed8 100%);
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 34px;
}

.auth-subtitle {
    font-size: 12px;
    color: var(--sz-muted);
}

.auth-heading {
    margin-bottom: 24px;
}

    .auth-heading h1 {
        font-size: 30px;
        font-weight: 850;
        letter-spacing: -.04em;
        margin-bottom: 6px;
    }

    .auth-heading p {
        color: var(--sz-muted);
        margin: 0;
    }

/* Responsive */

@media (max-width: 992px) {
    .sz-sidebar {
        width: 86px;
    }

    .sz-brand-name,
    .sz-brand-subtitle,
    .sz-nav-link span:last-child,
    .sz-nav-section,
    .sz-nav-collapse-toggle {
        display: none;
    }

    .sz-main {
        margin-left: 86px;
        width: calc(100% - 86px);
    }

    .sz-content {
        padding: 14px;
    }

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

/* Toast notifications */

.sz-toast-container {
    position: fixed;
    top: 96px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.sz-toast {
    min-width: 280px;
    max-width: 420px;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .20);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

    .sz-toast.show {
        opacity: 1;
        transform: translateY(0);
    }

.sz-toast-success {
    color: #166534;
    background: #dcfce7;
    border-color: #86efac;
}

.sz-toast-danger {
    color: #991b1b;
    background: #fee2e2;
    border-color: #fecaca;
}

.sz-color-preview {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .18);
}

.sz-color-preview-empty {
    background: linear-gradient(135deg, transparent 0 44%, #dc2626 45% 55%, transparent 56% 100%), #ffffff !important;
}

th[data-sz-sort] {
    user-select: none;
    white-space: nowrap;
}

    th[data-sz-sort]::after {
        content: " ↕";
        font-size: 12px;
        opacity: .35;
    }

th.sz-sort-asc::after {
    content: " ↑";
    opacity: .9;
}

th.sz-sort-desc::after {
    content: " ↓";
    opacity: .9;
}

.sz-table-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sz-table-search {
    max-width: 360px;
}

/* Confirm modal */

.sz-confirm-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, .45);
    backdrop-filter: blur(3px);
}

    .sz-confirm-modal-backdrop.show {
        display: flex;
    }

.sz-confirm-modal {
    width: 100%;
    max-width: 460px;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(15, 23, 42, .35);
    animation: szConfirmModalIn .18s ease-out;
}

.sz-confirm-modal-header {
    padding: 20px 22px 10px;
}

    .sz-confirm-modal-header h5 {
        margin: 0;
        font-size: 18px;
        font-weight: 800;
        color: #0f172a;
    }

.sz-confirm-modal-body {
    padding: 0 22px 18px;
}

    .sz-confirm-modal-body p {
        margin: 0;
        color: #475569;
        line-height: 1.5;
    }

.sz-confirm-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 22px 22px;
    background: #f8fafc;
}

@keyframes szConfirmModalIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(.98);
    }

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

.sz-sidebar::-webkit-scrollbar {
    width: 8px;
}

.sz-sidebar::-webkit-scrollbar-thumb {
    background: #c9c9c9;
    border-radius: 12px;
}

    .sz-sidebar::-webkit-scrollbar-thumb:hover {
        background: #b4b4b4;
    }

.sz-row-inactive {
    background-color: #fff8e6;
}

.article-movement-list {
    padding-right: 2px;
}

.article-movement-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    background: #fff;
    margin-bottom: 10px;
}

    .article-movement-card:hover {
        background: #fafafa;
    }

.article-movement-list::-webkit-scrollbar {
    width: 8px;
}

.article-movement-list::-webkit-scrollbar-thumb {
    background: #cfcfcf;
    border-radius: 10px;
}

.article-details-body {
    padding: 1.5rem 1.75rem;
}

    .article-details-body .accordion,
    .article-details-body .article-movement-list {
        margin-left: 0;
        margin-right: 0;
    }

.sz-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
}

    .sz-section-title::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #dbe3ef;
    }

.article-web-modal-body {
    max-height: calc(100vh - 210px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 5rem;
}

.article-detail-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: .20rem;
}

.article-detail-value {
    line-height: 1.45;
    white-space: normal;
    word-break: break-word;
}

.sz-row-disabled {
    background-color: rgba(108,117,125,.08);
}

    .sz-row-disabled:hover {
        background-color: rgba(108,117,125,.12);
    }

.article-resource-dropzone {
    border: 2px dashed var(--sz-border);
    border-radius: 16px;
    background: var(--sz-surface-soft);
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

    .article-resource-dropzone:hover,
    .article-resource-dropzone.is-drag-over {
        border-color: var(--sz-primary);
        background: var(--sz-primary-soft);
        box-shadow: 0 10px 30px rgba(37, 99, 235, .12);
    }

.article-resource-dropzone-icon {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 8px;
}

.sz-sale-cash-register .sale-totals-box {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(248, 250, 252, .9);
}

.sz-sale-cash-register [data-sale-barcode-input='true'] {
    font-weight: 600;
    letter-spacing: .02em;
}

.sz-sale-cash-register {
    position: relative;
}

.sale-cash-register-lock-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    background: rgba(248, 250, 252, .72);
    backdrop-filter: blur(2px);
    border-radius: 1rem;
}

.sale-cash-register-lock-box {
    width: min(440px, calc(100% - 2rem));
    padding: 2rem;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
    text-align: center;
}

.sale-cash-register-lock-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, .10);
    font-size: 1.6rem;
}

.sz-dashboard-shortcuts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.sz-dashboard-shortcut-card {
    position: relative;
    display: flex;
    min-height: 132px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    overflow: hidden;
}

    .sz-dashboard-shortcut-card:hover {
        transform: translateY(-2px);
        border-color: rgba(37, 99, 235, 0.25);
        box-shadow: 0 16px 36px rgba(15, 23, 42, 0.11);
    }

.sz-dashboard-shortcut-main {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem 3.25rem 1.25rem 1.25rem;
    color: inherit;
    text-decoration: none;
}

.sz-dashboard-shortcut-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    flex: 0 0 3.2rem;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    font-size: 1.45rem;
}

.sz-dashboard-shortcut-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sz-dashboard-shortcut-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
}

.sz-dashboard-shortcut-description {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.35;
    color: #6b7280;
}

.sz-dashboard-shortcut-remove {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
}

    .sz-dashboard-shortcut-remove .btn {
        width: 2rem;
        height: 2rem;
        padding: 0;
        border-radius: 999px;
        color: #6b7280;
    }

        .sz-dashboard-shortcut-remove .btn:hover {
            color: #dc2626;
        }

.sz-dashboard-shortcut-picker {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0.85rem;
}

.sz-dashboard-shortcut-picker-item {
    margin: 0;
}

.sz-dashboard-shortcut-picker-button {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
    min-height: 104px;
    padding: 1rem;
    text-align: left;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: #ffffff;
}

    .sz-dashboard-shortcut-picker-button:hover {
        border-color: rgba(37, 99, 235, 0.3);
        background: rgba(37, 99, 235, 0.03);
    }

.sz-dashboard-shortcut-add-icon {
    margin-left: auto;
    color: #2563eb;
}

/* Report export overlay */

.sz-report-export-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
}

.sz-report-export-box {
    width: min(420px, calc(100vw - 32px));
    padding: 28px 30px;
    border-radius: 22px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
}

.sz-report-export-spinner {
    width: 46px;
    height: 46px;
    margin: 0 auto 16px auto;
    border: 4px solid #dbeafe;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: sz-report-export-spin 0.8s linear infinite;
}

.sz-report-export-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.sz-report-export-message {
    margin-top: 6px;
    font-size: 14px;
    color: #64748b;
}

@keyframes sz-report-export-spin {
    to {
        transform: rotate(360deg);
    }
}

@media print {
    .sz-report-export-overlay {
        display: none !important;
    }
}