@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');
/* ══════════════════════════════════════════════
   APP STYLES - SAP Business One Style
   ══════════════════════════════════════════════ */
:root {
    /* SAP Brand Colors */
    --sap-brand: #0a6ed1;
    --sap-brand-hover: #0854a0;
    --sap-brand-active: #074078;
    --sap-shell: #354a5f;
    --sap-shell-dark: #2c3e50;
    --sap-highlight: #0854a0;
    
    /* Semantic Colors */
    --sap-positive: #107e3e;
    --sap-positive-light: #e6f4ea;
    --sap-critical: #e47911;
    --sap-critical-light: #fff3e0;
    --sap-negative: #bb0000;
    --sap-negative-light: #ffebeb;
    --sap-informative: #0a6ed1;
    --sap-informative-light: #e5f0fa;
    --sap-neutral: #6a6d70;

    /* Backgrounds */
    --sap-bg-shell: #354a5f;
    --sap-bg-page: #f7f7f7;
    --sap-bg-card: #ffffff;
    --sap-bg-list: #ffffff;
    --sap-bg-hover: #e5f0fa;
    --sap-bg-selected: #d4e8f9;
    --sap-bg-header: #f2f2f2;

    /* Text Colors */
    --sap-text: #32363a;
    --sap-text-secondary: #6a6d70;
    --sap-text-placeholder: #a8a8a8;
    --sap-text-inverse: #ffffff;
    --sap-text-link: #0a6ed1;

    /* Borders */
    --sap-border: #d9d9d9;
    --sap-border-active: #0a6ed1;
    --sap-separator: #e4e4e4;

    /* Shadows */
    --sap-shadow-sm: 0 0 0 1px rgba(0,0,0,0.1);
    --sap-shadow-card: 0 1px 4px rgba(0,0,0,0.15);
    --sap-shadow-dialog: 0 6px 12px rgba(0,0,0,0.18);

    /* Sizing */
    --sap-radius: 4px;
    --sap-radius-card: 8px;

    /* Font */
    --sap-font: 'Source Sans Pro', 'Segoe UI', Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--sap-font);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--sap-text);
    background: var(--sap-bg-page);
    min-height: 100vh;
    line-height: 1.4;
}

a {
    color: var(--sap-text-link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════════════
   APP SHELL
   ══════════════════════════════════════════════ */

.app-shell {
    min-height: 100vh;
    display: flex;
    background: var(--sap-bg-page);
}

.app-sidebar {
    width: 260px;
    background: var(--sap-bg-shell);
    color: var(--sap-text-inverse);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.app-topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border-bottom: 1px solid var(--sap-border);
    position: sticky;
    top: 0;
    z-index: 80;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: var(--sap-radius);
    display: grid;
    place-items: center;
    background: var(--sap-brand);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
}

.brand-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sap-text-inverse);
}

.brand-sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.nav-group {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--sap-radius);
    background: rgba(255,255,255,0.03);
    overflow: hidden;
}

.nav-group summary {
    list-style: none;
    cursor: pointer;
    padding: 0.6rem 0.75rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-group summary::-webkit-details-marker {
    display: none;
}

.nav-group summary::after {
    content: '>';
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-group[open] summary::after {
    transform: rotate(90deg);
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem 0.75rem;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    padding: 0.4rem 0.6rem;
    border-radius: var(--sap-radius);
    font-size: 0.85rem;
    text-decoration: none;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}

.logout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logout .user {
    color: var(--sap-text-secondary);
    font-size: 0.8125rem;
}

button,
.button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    background: var(--sap-brand);
    color: #fff;
    border: 1px solid var(--sap-brand);
    border-radius: var(--sap-radius);
    padding: 0.375rem 0.75rem;
    min-height: 32px;
    cursor: pointer;
    font-family: var(--sap-font);
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.15s ease;
}

button:hover,
.button:hover,
.btn:hover {
    background: var(--sap-brand-hover);
    border-color: var(--sap-brand-hover);
}

button:active,
.button:active,
.btn:active {
    background: var(--sap-brand-active);
    border-color: var(--sap-brand-active);
}

button:focus,
.button:focus,
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(10, 110, 209, 0.3);
}

button.icon-btn,
a.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-height: 32px;
    padding: 0;
    border-radius: var(--sap-radius);
    border: 1px solid var(--sap-border);
    background: var(--sap-bg-card);
    color: var(--sap-text);
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    gap: 0;
}

button.icon-btn:hover,
a.icon-btn:hover {
    background: var(--sap-bg-hover);
    border-color: var(--sap-brand);
}

button.icon-btn:active,
a.icon-btn:active {
    background: var(--sap-bg-selected);
    border-color: var(--sap-brand);
}

.icon-btn.primary {
    background: var(--sap-brand);
    border-color: var(--sap-brand);
    color: #fff;
}

.icon-btn.primary:hover {
    background: var(--sap-brand-hover);
    border-color: var(--sap-brand-hover);
}

.icon-btn.success {
    background: var(--sap-positive);
    border-color: var(--sap-positive);
    color: #fff;
}

.icon-btn.success:hover {
    background: #0a5c2b;
    border-color: #0a5c2b;
}

.icon-btn.danger {
    background: var(--sap-negative);
    border-color: var(--sap-negative);
    color: #fff;
}

.icon-btn.danger:hover {
    background: #8b0000;
    border-color: #8b0000;
}

.icon-btn.warning {
    background: var(--sap-critical);
    border-color: var(--sap-critical);
    color: #fff;
}

.icon-btn.warning:hover {
    background: #c4650e;
    border-color: #c4650e;
}

.icon-btn.ghost {
    background: transparent;
    border-color: transparent;
    color: var(--sap-text-secondary);
}

.icon-btn.ghost:hover {
    background: var(--sap-bg-hover);
    border-color: transparent;
    color: var(--sap-text);
}

.icon-btn.inverse {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.icon-btn.inverse:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
}

.icon-btn.sm {
    width: 28px;
    height: 28px;
    min-height: 28px;
}

.icon-btn.lg {
    width: 40px;
    height: 40px;
    min-height: 40px;
}

.icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Bouton icône seule */
.btn-icon {
    width: 32px;
    height: 32px;
    padding: 0;
    min-height: 32px;
}

.btn-icon.sm {
    width: 28px;
    height: 28px;
    min-height: 28px;
    font-size: 0.8125rem;
}

.btn-icon.lg {
    width: 40px;
    height: 40px;
    min-height: 40px;
    font-size: 1rem;
}

/* Variantes SAP */
.btn-secondary,
.btn-transparent {
    background: transparent;
    color: var(--sap-brand);
    border-color: var(--sap-brand);
}

.btn-secondary:hover,
.btn-transparent:hover {
    background: var(--sap-bg-hover);
    color: var(--sap-brand-hover);
}

.btn-ghost {
    background: transparent;
    color: var(--sap-text);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--sap-bg-hover);
    border-color: transparent;
}

.btn-success,
.btn-positive {
    background: var(--sap-positive);
    border-color: var(--sap-positive);
}

.btn-success:hover,
.btn-positive:hover {
    background: #0a5c2b;
    border-color: #0a5c2b;
}

.btn-danger,
.btn-negative {
    background: var(--sap-negative);
    border-color: var(--sap-negative);
}

.btn-danger:hover,
.btn-negative:hover {
    background: #8b0000;
    border-color: #8b0000;
}

.btn-attention {
    background: var(--sap-critical);
    border-color: var(--sap-critical);
}

.btn-attention:hover {
    background: #c4650e;
    border-color: #c4650e;
}

button.link {
    background: transparent;
    color: var(--sap-text-link);
    border: none;
    padding: 0;
    min-height: auto;
}

button.link:hover {
    text-decoration: underline;
    background: transparent;
}

/* ══════════════════════════════════════════════
   ICÔNES SAP STYLE (Unicode simple)
   ══════════════════════════════════════════════ */

button::before,
.button::before,
.btn::before {
    font-size: 0.9375rem;
    line-height: 1;
}

.btn-add::before { content: '+'; font-weight: 700; }
.btn-edit::before { content: '✎'; }
.btn-delete::before { content: '✕'; }
.btn-save::before { content: '✓'; }
.btn-cancel::before { content: '✕'; }
.btn-search::before { content: '⌕'; }
.btn-filter::before { content: '⊞'; }
.btn-print::before { content: '⎙'; }
.btn-download::before { content: '↓'; }
.btn-upload::before { content: '↑'; }
.btn-refresh::before { content: '↻'; }
.btn-settings::before { content: '⚙'; }
.btn-user::before { content: '⊙'; }
.btn-logout::before { content: '⏻'; }
.btn-home::before { content: '⌂'; }
.btn-list::before { content: '☰'; }
.btn-grid::before { content: '⊞'; }
.btn-chart::before { content: '▤'; }
.btn-calendar::before { content: '▦'; }
.btn-mail::before { content: '✉'; }
.btn-phone::before { content: '✆'; }
.btn-link::before { content: '⛓'; }
.btn-copy::before { content: '⧉'; }
.btn-check::before { content: '✓'; }
.btn-close::before { content: '✕'; }
.btn-menu::before { content: '☰'; }
.btn-more::before { content: '⋯'; }
.btn-prev::before { content: '◂'; }
.btn-next::before { content: '▸'; }
.btn-up::before { content: '▴'; }
.btn-down::before { content: '▾'; }
.btn-expand::before { content: '⊕'; }
.btn-collapse::before { content: '⊖'; }
.btn-lock::before { content: '⊘'; }
.btn-unlock::before { content: '⊙'; }
.btn-star::before { content: '★'; }
.btn-heart::before { content: '♥'; }
.btn-flag::before { content: '⚑'; }
.btn-bell::before { content: '⊛'; }
.btn-eye::before { content: '◉'; }
.btn-invoice::before { content: '▤'; }
.btn-money::before { content: '◈'; }
.btn-cart::before { content: '⊟'; }
.btn-box::before { content: '▢'; }
.btn-truck::before { content: '▷'; }
.btn-validate::before { content: '✓'; }
.btn-reject::before { content: '✕'; }
.btn-info::before { content: 'ⓘ'; }
.btn-help::before { content: '?'; }
.btn-warning::before { content: '⚠'; }

/* ══════════════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════════════ */

.app-main {
    padding: 1rem;
    flex: 1;
}

.page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--sap-separator);
}

.page-head h1 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sap-text);
}

/* ══════════════════════════════════════════════
   CARDS (SAP Object Page Style)
   ══════════════════════════════════════════════ */

.card {
    background: var(--sap-bg-card);
    border-radius: var(--sap-radius-card);
    padding: 1rem;
    border: 1px solid var(--sap-border);
    box-shadow: var(--sap-shadow-card);
    margin-bottom: 1rem;
}

.card h2 {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sap-text);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--sap-separator);
}

.card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--sap-text);
}

.filters {
    background: var(--sap-bg-header);
    border: 1px solid var(--sap-border);
}

/* ══════════════════════════════════════════════
   MESSAGE STRIP (SAP Alerts)
   ══════════════════════════════════════════════ */

.alert {
    padding: 0.625rem 1rem;
    border-radius: var(--sap-radius);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    border-left: 4px solid;
}

.alert::before {
    font-size: 1rem;
    flex-shrink: 0;
}

.alert.success {
    background: var(--sap-positive-light);
    border-left-color: var(--sap-positive);
    color: #0a5c2b;
}

.alert.success::before {
    content: '✓';
    color: var(--sap-positive);
}

.alert.error {
    background: var(--sap-negative-light);
    border-left-color: var(--sap-negative);
    color: #8b0000;
}

.alert.error::before {
    content: '✕';
    color: var(--sap-negative);
}

.alert.warn {
    background: var(--sap-critical-light);
    border-left-color: var(--sap-critical);
    color: #8a5100;
}

.alert.warn::before {
    content: '⚠';
    color: var(--sap-critical);
}

.alert.info {
    background: var(--sap-informative-light);
    border-left-color: var(--sap-informative);
    color: #074078;
}

.alert.info::before {
    content: 'ⓘ';
    color: var(--sap-informative);
}

/* ══════════════════════════════════════════════
   GRIDS
   ══════════════════════════════════════════════ */

.grid {
    display: grid;
    gap: 1rem;
}

.grid.two {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.three {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid.four {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

/* ══════════════════════════════════════════════
   FORMS (SAP Input Style)
   ══════════════════════════════════════════════ */

label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-weight: 400;
    color: var(--sap-text);
    font-size: 0.875rem;
}

label > span:first-child {
    font-size: 0.75rem;
    color: var(--sap-text-secondary);
}

input,
select,
textarea {
    padding: 0.375rem 0.5rem;
    border: 1px solid var(--sap-border);
    border-radius: var(--sap-radius);
    font-size: 0.875rem;
    font-family: var(--sap-font);
    background: var(--sap-bg-card);
    color: var(--sap-text);
    min-height: 32px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input::placeholder,
textarea::placeholder {
    color: var(--sap-text-placeholder);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236a6d70' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 0.875rem;
    padding-right: 2rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--sap-border-active);
    box-shadow: 0 0 0 2px rgba(10, 110, 209, 0.2);
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--sap-brand);
}

input:read-only,
input:disabled {
    background: var(--sap-bg-header);
    color: var(--sap-text-secondary);
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
    margin: 0.75rem 0;
}

.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--sap-brand);
    cursor: pointer;
    min-height: auto;
}

/* Required field indicator */
label.required::after {
    content: '*';
    color: var(--sap-negative);
    margin-left: 0.25rem;
}

/* ══════════════════════════════════════════════
   TABLES (SAP Responsive Table)
   ══════════════════════════════════════════════ */

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    background: var(--sap-bg-list);
}

table th,
table td {
    text-align: left;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--sap-separator);
}

table th {
    background: var(--sap-bg-header);
    font-weight: 600;
    color: var(--sap-text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

table tbody tr {
    transition: background 0.1s ease;
}

table tbody tr:hover {
    background: var(--sap-bg-hover);
}

table tbody tr.selected {
    background: var(--sap-bg-selected);
}

table tbody tr:last-child td {
    border-bottom: none;
}

.doc-row.status-draft td:first-child {
    border-left: 3px solid var(--sap-informative);
}

.doc-row.status-issued td:first-child {
    border-left: 3px solid var(--sap-positive);
}

.doc-row.status-void td:first-child {
    border-left: 3px solid var(--sap-negative);
}

.doc-row.status-draft {
    background: #f0f7ff;
}

.doc-row.status-issued {
    background: #f1fbf4;
}

.doc-row.status-void {
    background: #fff1f1;
}

.doc-row.status-draft:hover {
    background: #e2f0ff;
}

.doc-row.status-issued:hover {
    background: #e3f7ea;
}

.doc-row.status-void:hover {
    background: #ffe3e3;
}

.doc-status {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: var(--sap-radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.doc-status.status-draft {
    background: var(--sap-informative-light);
    color: var(--sap-informative);
}

.doc-status.status-issued {
    background: var(--sap-positive-light);
    color: var(--sap-positive);
}

.doc-status.status-void {
    background: var(--sap-negative-light);
    color: var(--sap-negative);
}

/* ══════════════════════════════════════════════
   ACTIONS & TOOLBAR
   ══════════════════════════════════════════════ */

.actions,
.toolbar {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.toolbar {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--sap-separator);
    margin-bottom: 0.75rem;
}

.toolbar-spacer {
    flex: 1;
}

.totals {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--sap-separator);
    font-weight: 600;
    font-size: 0.9375rem;
}

.totals .amount {
    color: var(--sap-brand);
}

.lines .lines-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.line-total {
    font-weight: 600;
    color: var(--sap-brand);
}

/* ══════════════════════════════════════════════
   AUTH CARD (Login Page)
   ══════════════════════════════════════════════ */

.auth-card {
    max-width: 360px;
    margin: 10vh auto 0;
    text-align: center;
}

.auth-card h1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sap-text);
    margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════
   OBJECT STATUS & BADGES
   ══════════════════════════════════════════════ */

.muted {
    color: var(--sap-text-secondary);
    font-size: 0.8125rem;
}

.badge,
.object-status {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: var(--sap-radius);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-primary,
.object-status.informative {
    background: var(--sap-informative-light);
    color: var(--sap-informative);
}

.badge-success,
.object-status.positive {
    background: var(--sap-positive-light);
    color: var(--sap-positive);
}

.badge-warning,
.object-status.critical {
    background: var(--sap-critical-light);
    color: #8a5100;
}

.badge-danger,
.object-status.negative {
    background: var(--sap-negative-light);
    color: var(--sap-negative);
}

.badge-neutral,
.object-status.neutral {
    background: #ebebeb;
    color: var(--sap-neutral);
}

/* ══════════════════════════════════════════════
   GUEST/PUBLIC PAGES
   ══════════════════════════════════════════════ */

.guest {
    background: var(--sap-bg-page);
}

.guest-main {
    padding: 1.5rem;
}

/* ══════════════════════════════════════════════
   BUSY INDICATOR
   ══════════════════════════════════════════════ */

.busy {
    opacity: 0.5;
    pointer-events: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--sap-border);
    border-top-color: var(--sap-brand);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

@media (max-width: 900px) {
    .app-shell {
        flex-direction: column;
    }

    .app-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .sidebar-nav {
        margin-top: 0.75rem;
    }

    .app-topbar {
        position: relative;
    }

    .page-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .totals {
        flex-direction: column;
        gap: 0.375rem;
    }
}

@media (max-width: 600px) {
    .app-main {
        padding: 0.75rem;
    }

    .card {
        padding: 0.75rem;
    }

    table {
        font-size: 0.8125rem;
    }

    table th,
    table td {
        padding: 0.375rem 0.5rem;
    }

    .form-row {
        flex-direction: column;
        align-items: stretch;
    }

    button:not(.icon-btn), .button, .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-icon {
        width: 32px;
    }
}

/* ══════════════════════════════════════════════
   SCROLLBAR
   ══════════════════════════════════════════════ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--sap-bg-page);
}

::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

/* ══════════════════════════════════════════════
   SELECTION
   ══════════════════════════════════════════════ */

::selection {
    background: var(--sap-brand);
    color: #fff;
}
