/* ============================================================
   LANGSPEEL — Vinyl Collectie
   Donker thema, mobile-first
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overflow-x: hidden; max-width: 100%; }

:root {
    --bg:           #111111;
    --surface:      #1C1C1C;
    --surface-2:    #252525;
    --surface-3:    #2E2E2E;
    --border:       #333333;
    --primary:      #C8A96E;
    --primary-dark: #A88B50;
    --primary-dim:  rgba(200,169,110,0.12);
    --text:         #EBEBEB;
    --text-2:       #A0A0A0;
    --text-3:       #666666;
    --success:      #5CA85C;
    --error:        #C0504A;
    --warning:      #C09030;
    --radius:       10px;
    --radius-sm:    6px;
    --shadow:       0 4px 16px rgba(0,0,0,0.45);
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.35);
    --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition:   0.18s ease;
}

html { height: 100%; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.5;
    min-height: 100%;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 56px;
}

.site-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.site-title span {
    color: var(--text-2);
    font-weight: 400;
}

.nav-tabs {
    display: flex;
    gap: 4px;
    flex: 1;
}

.nav-tab {
    background: none;
    border: none;
    color: var(--text-2);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}

.nav-tab:hover { color: var(--text); background: var(--surface-2); }
.nav-tab.active { color: var(--primary); background: var(--primary-dim); }

.header-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    transition: background var(--transition), opacity var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-primary  { background: var(--primary); color: #111; }
.btn-primary:hover:not(:disabled) { background: var(--primary-dark); }

.btn-ghost    { background: var(--surface-2); color: var(--text); }
.btn-ghost:hover:not(:disabled) { background: var(--surface-3); }

.btn-danger   { background: var(--error); color: #fff; }
.btn-danger:hover:not(:disabled) { background: #a0403a; }

.btn-outline  {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-outline:hover:not(:disabled) { background: var(--primary-dim); }

.btn-sm { padding: 5px 10px; font-size: 13px; }
.btn-icon { padding: 8px; }

.btn svg { flex-shrink: 0; }

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.app-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 16px 60px;
}

/* ============================================================
   TOOLBAR (zoek + filter + sorteer)
   ============================================================ */
.toolbar {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.search-wrap {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-wrap svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-3);
    pointer-events: none;
}

.search-input {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    padding: 9px 10px 9px 36px;
    outline: none;
    transition: border-color var(--transition);
}

.search-input:focus { border-color: var(--primary); }
.search-input::placeholder { color: var(--text-3); }

.filter-select {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    padding: 9px 10px;
    outline: none;
    cursor: pointer;
    transition: border-color var(--transition);
    min-width: 130px;
}

.filter-select:focus { border-color: var(--primary); }

/* ============================================================
   RECORDS GRID
   ============================================================ */
.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.record-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
}

.record-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--surface-3);
}

.record-cover {
    aspect-ratio: 1;
    width: 100%;
    object-fit: cover;
    display: block;
    background: var(--surface-2);
}

.record-cover-placeholder {
    aspect-ratio: 1;
    width: 100%;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
}

.record-info {
    padding: 10px 12px 12px;
}

.record-artist {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.record-title {
    font-size: 13px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

.record-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.record-year {
    font-size: 12px;
    color: var(--text-2);
}

.stars {
    display: flex;
    gap: 1px;
}

.star {
    font-size: 11px;
    color: var(--text-3);
}
.star.filled { color: var(--primary); }

.last-played-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    flex-shrink: 0;
    title: attr(data-title);
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-2);
}

.empty-state svg { color: var(--text-3); margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; margin-bottom: 8px; color: var(--text); }
.empty-state p  { font-size: 14px; margin-bottom: 24px; }

/* ============================================================
   COUNT BAR
   ============================================================ */
.count-bar {
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 14px;
}

/* ============================================================
   MODAL OVERLAY
   ============================================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: fadeIn 0.15s ease;
}

.overlay.closing { animation: fadeOut 0.15s ease forwards; }

@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }

.modal {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 32px);
    width: 100%;
    animation: slideUp 0.18s ease;
}

@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-sm { max-width: 420px; }
.modal-md { max-width: 680px; }
.modal-lg { max-width: 920px; }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-title { font-size: 17px; font-weight: 600; }

.modal-close {
    background: none;
    border: none;
    color: var(--text-2);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    display: flex;
    transition: color var(--transition);
}
.modal-close:hover { color: var(--text); }

.modal-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
    flex: 1;
}

.modal-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* ============================================================
   DETAIL MODAL
   ============================================================ */
.detail-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
}

.detail-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    display: block;
    background: var(--surface-2);
}

.detail-cover-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--surface-2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
}

.detail-artist {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.detail-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
}

.detail-year-label {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 16px;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin-bottom: 16px;
}

.detail-meta-item label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-3);
    display: block;
    margin-bottom: 2px;
}

.detail-meta-item span {
    font-size: 14px;
    color: var(--text);
}

.detail-stars { margin-bottom: 16px; }
.detail-stars .stars { gap: 3px; }
.detail-stars .star { font-size: 16px; }

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-3);
    margin-bottom: 8px;
    margin-top: 16px;
}

.tracklist {
    list-style: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.track-item {
    display: flex;
    gap: 12px;
    align-items: baseline;
    padding: 7px 12px;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}
.track-item:last-child { border-bottom: none; }
.track-item:nth-child(even) { background: var(--surface-2); }

.track-pos { color: var(--text-3); font-size: 12px; min-width: 28px; flex-shrink: 0; }
.track-title { flex: 1; }
.track-dur { color: var(--text-3); font-size: 12px; flex-shrink: 0; }

.detail-notes {
    background: var(--surface-2);
    border-radius: var(--radius-sm);
    padding: 12px;
    font-size: 14px;
    color: var(--text-2);
    white-space: pre-wrap;
}

.detail-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.badge {
    display: inline-block;
    background: var(--surface-3);
    border-radius: 4px;
    font-size: 12px;
    padding: 2px 8px;
    color: var(--text-2);
}

.badge-good  { background: rgba(92,168,92,0.2);  color: var(--success); }
.badge-warn  { background: rgba(192,144,48,0.2); color: var(--warning); }

/* ============================================================
   FORMULIER (toevoegen / bewerken)
   ============================================================ */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 14px;
    padding: 9px 10px;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }

.form-group textarea { resize: vertical; min-height: 80px; }

.form-group select option { background: var(--surface-2); }

/* Cover preview in formulier */
.cover-preview-wrap {
    position: relative;
    width: 120px;
    flex-shrink: 0;
}

.cover-preview {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    display: block;
}

.cover-preview-placeholder {
    width: 120px;
    height: 120px;
    background: var(--surface-3);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
}

.form-cover-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    grid-column: 1 / -1;
}

.form-cover-inputs { flex: 1; display: flex; flex-direction: column; gap: 8px; }

/* Sterrenselectie */
.star-select {
    display: flex;
    gap: 4px;
}

.star-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    color: var(--text-3);
    padding: 2px;
    transition: color var(--transition), transform var(--transition);
    line-height: 1;
}

.star-btn.filled,
.star-btn:hover { color: var(--primary); }
.star-btn:hover { transform: scale(1.15); }

/* Sectieheadings in formulier */
.form-section-title {
    grid-column: 1 / -1;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-3);
    border-bottom: 1px solid var(--border);
    padding-bottom: 6px;
    margin-top: 6px;
}

/* ============================================================
   TRACK EDITOR (formulier)
   ============================================================ */
.track-editor-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.track-row {
    display: flex;
    gap: 6px;
    align-items: center;
}

.track-pos-input  { flex: 0 0 52px; min-width: 0; }
.track-dur-input  { flex: 0 0 68px; min-width: 0; }
.track-title-input { flex: 1; min-width: 0; }

.track-row input {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 13px;
    padding: 7px 8px;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}
.track-row input:focus { border-color: var(--primary); }

/* ============================================================
   STATISTIEKEN PANEL
   ============================================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.stat-card {
    background: var(--surface-2);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chart-bar-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.chart-bar-item { display: flex; align-items: center; gap: 10px; font-size: 13px; }

.chart-bar-label { min-width: 100px; color: var(--text-2); text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.chart-bar-track {
    flex: 1;
    height: 10px;
    background: var(--surface-3);
    border-radius: 5px;
    overflow: hidden;
}

.chart-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 5px;
    transition: width 0.4s ease;
}

.chart-bar-count { color: var(--text-3); font-size: 12px; min-width: 28px; text-align: right; }

.recent-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.recent-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: var(--surface-2);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    cursor: pointer;
}

.recent-item:hover { border-color: var(--primary); }

.recent-cover {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    background: var(--surface-3);
    flex-shrink: 0;
}

.recent-cover-ph {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--surface-3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
}

.recent-info { flex: 1; min-width: 0; }
.recent-artist { font-size: 12px; color: var(--primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recent-title  { font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recent-date   { font-size: 11px; color: var(--text-3); white-space: nowrap; }

/* ============================================================
   DISCOGS ZOEKRESULTATEN
   ============================================================ */
.discogs-results {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 420px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.discogs-result-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: var(--surface-2);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.discogs-result-item:hover { border-color: var(--primary); background: var(--surface-3); }

.discogs-thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 4px;
    background: var(--surface-3);
    flex-shrink: 0;
}

.discogs-thumb-ph {
    width: 52px;
    height: 52px;
    background: var(--surface-3);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-3);
}

.discogs-info { flex: 1; min-width: 0; }
.discogs-info-title  { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.discogs-info-sub    { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.discogs-info-badges { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 4px; }

/* ============================================================
   WENSLIJST
   ============================================================ */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}

.wishlist-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}

.wishlist-card-actions {
    display: flex;
    gap: 6px;
    padding: 8px 10px;
    border-top: 1px solid var(--border);
}

.wishlist-card-actions .btn { flex: 1; justify-content: center; font-size: 12px; padding: 6px 4px; }

/* ============================================================
   TOAST
   ============================================================ */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.toast {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    color: var(--text);
    font-size: 14px;
    padding: 12px 16px;
    max-width: 320px;
    pointer-events: auto;
    animation: toastIn 0.2s ease;
}

.toast.success { border-left: 3px solid var(--success); }
.toast.error   { border-left: 3px solid var(--error);   }
.toast.warning { border-left: 3px solid var(--warning);  }
.toast.fade-out { animation: toastOut 0.3s ease forwards; }

@keyframes toastIn  { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; transform: translateX(20px); } }

/* ============================================================
   LOADER
   ============================================================ */
.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: var(--text-3);
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   CONFIRM DIALOG
   ============================================================ */
.confirm-text { font-size: 15px; color: var(--text-2); line-height: 1.5; }

/* ============================================================
   RESPONSIVE – tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
    .records-grid   { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    .wishlist-grid  { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
    .detail-layout  { grid-template-columns: 260px 1fr; }
}

/* ============================================================
   RESPONSIVE – desktop (1025px+)
   ============================================================ */
@media (min-width: 1025px) {
    .records-grid   { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .wishlist-grid  { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    .detail-layout  { grid-template-columns: 300px 1fr; }
}

/* ============================================================
   RESPONSIVE – mobiel: modal als bottom sheet
   ============================================================ */
@media (max-width: 600px) {
    /* Header wrapping op kleine schermen */
    .header-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 16px 0;
        gap: 8px;
        align-items: center;
    }

    .site-title       { flex: 1; }
    .site-title span  { display: none; }
    .header-actions   { flex-shrink: 0; }

    .nav-tabs {
        order: 10;
        width: 100%;
        border-top: 1px solid var(--border);
        padding: 8px 0 4px;
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-tab { flex: 1; justify-content: center; text-align: center; }

    .hide-xs { display: none; }

    /* Modals als bottom sheet */
    .overlay { align-items: flex-end; padding: 0; }

    .modal {
        border-radius: var(--radius) var(--radius) 0 0;
        max-height: 92vh;
        animation: slideUpSheet 0.22s ease;
    }

    @keyframes slideUpSheet { from { transform: translateY(100%); } to { transform: translateY(0); } }

    .detail-layout { grid-template-columns: 1fr; }
    .detail-cover, .detail-cover-placeholder { width: 160px; margin: 0 auto; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full { grid-column: auto; }
    .form-section-title { grid-column: auto; }

    .detail-meta-grid { grid-template-columns: 1fr; }

    .toast-container { right: 12px; bottom: 12px; left: 12px; }
    .toast { max-width: 100%; }
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }
