/* ===========================
   VITALS-LEGACY.CSS
   Vital Signs Dashboard, Number Pad, and Reconnect Modal styles.
   These use the neon/cyber dark theme specific to the VSD component.
   =========================== */

/* Font Awesome Icon Styling (VSD-specific) */
.btn-icon,
.vsd-tab-icon,
.vsd-btn-icon,
.vsd-empty-icon,
.vsd-entries-title-compact i,
.vsd-entry-note-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i,
.vsd-tab-icon i,
.vsd-btn-icon i,
.vsd-empty-icon i,
.vsd-entries-title-compact i,
.vsd-entry-note-compact i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    font-size: 1.1rem;
    min-width: 1.1em;
    text-align: center;
}

.vsd-tab-icon i {
    font-size: 1rem;
    min-width: 1em;
    text-align: center;
}

.vsd-btn-icon i {
    font-size: 0.9rem;
    min-width: 0.9em;
    text-align: center;
}

.vsd-empty-icon i {
    font-size: 2.5rem;
    min-width: 2.5em;
    text-align: center;
    opacity: 0.5;
    color: #00d5ff;
}

.vsd-entries-title-compact i {
    margin-right: 0.5rem;
    font-size: 0.85rem;
    min-width: 0.85em;
    text-align: center;
}

.vsd-entry-note-compact i {
    font-size: 0.85rem;
    min-width: 0.85em;
    text-align: center;
}

.btn-text {
    display: inline;
}

/* ===========================
   VITAL SIGNS DASHBOARD STYLES
   =========================== */

.vitals-host {
    grid-column: 1 / -1;
    width: 100%;
}

.vsd-shell {
    background: linear-gradient(145deg,#10151d 0%, #131b25 45%, #0c1117 100%);
    border: 1px solid #1e2733;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 0 0 1px #1e2733, 0 6px 18px -6px #000, 0 0 24px -8px #00b5ff;
    position: relative;
}

    .vsd-shell:before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 14px;
        padding: 1px;
        background: linear-gradient(120deg,#00b5ff,#0085ff,#0055ff);
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: .25;
        pointer-events: none;
    }

.vsd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #20303f;
    position: relative;
    z-index: 1;
    gap: 1rem;
    flex-wrap: wrap;
}

.vsd-title-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vsd-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #77cfff;
    letter-spacing: .04rem;
    text-transform: uppercase;
    margin: 0;
}

.vsd-status-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #18242f;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    border: 1px solid #20303f;
}

.vsd-status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    animation: vsd-pulse 2s infinite;
}

.vsd-status-indicator.status-high {
    background-color: #ff4fa8;
}

.vsd-status-indicator.status-low {
    background-color: #f59e0b;
}

.vsd-status-text {
    color: #b8cee8;
    font-size: 0.75rem;
    font-weight: 500;
}

.vsd-status-text.muted {
    color: #6b7a8a;
}

@keyframes vsd-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Tabs */
.vsd-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #20303f;
    overflow-x: auto;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}

.vsd-tab {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #6b7a8a;
    cursor: pointer;
    font-weight: 600;
    transition: all .25s;
    white-space: nowrap;
    font-size: 0.75rem;
}

.vsd-tab:hover {
    color: #00d5ff;
}

.vsd-tab.active {
    color: #00d5ff;
    border-bottom-color: #00d5ff;
    box-shadow: 0 1px 6px rgba(0, 213, 255, 0.25);
}

/* KPI Bars - Compact */
.vsd-kpi-bar-compact {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.vsd-kpi-compact {
    flex: 1;
    min-width: 100px;
    background: linear-gradient(170deg,rgba(22,34,46,.8),rgba(14,22,30,.85));
    border: 1px solid #20303f;
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
    transition: all .25s;
}

.vsd-kpi-compact:hover {
    border-color: #00b5ff;
    box-shadow: 0 0 8px rgba(0, 213, 255, 0.4);
}

.vsd-kpi-label {
    display: block;
    color: #6b7a8a;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.3rem;
}

.vsd-kpi-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #9fd9ff;
}

.vsd-kpi-value.status-high {
    color: #ff4fa8;
}

.vsd-kpi-value.status-low {
    color: #f59e0b;
}

.vsd-kpi-value.status-normal {
    color: #10b981;
}

.trend-up { color: #ff4fa8; }
.trend-down { color: #10b981; }

/* Form Area - Compact */
.vsd-form-compact-inline {
    background: linear-gradient(170deg,rgba(22,34,46,.8),rgba(14,22,30,.85));
    border: 1px solid #20303f;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 1px #20303f, 0 2px 8px -4px #000;
}

.vsd-form-inputs-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: flex-end;
}

.vsd-form-group-inline {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.vsd-form-group-inline label {
    color: #77cfff;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.vsd-input-inline,
.vsd-input-inline-small {
    background-color: #0e161e;
    color: #e6e9ef;
    border: 1px solid #2d4254;
    border-radius: 6px;
    padding: 0.5rem 0.7rem;
    font-size: 0.8rem;
    transition: all .25s;
    outline: none;
}

.vsd-input-inline::placeholder,
.vsd-input-inline-small::placeholder {
    color: #6b7a8a;
}

.vsd-input-inline:focus,
.vsd-input-inline-small:focus {
    border-color: #00d5ff;
    background-color: #142532;
    box-shadow: 0 0 0 2px rgba(0, 213, 255, .25), 0 0 8px -2px #00d5ff;
}

.vsd-bp-input-inline {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.vsd-bp-input-inline span {
    color: #77cfff;
    font-weight: 600;
    font-size: 0.9rem;
}

.vsd-input-inline-small {
    flex: 1;
    min-width: 50px;
}

.vsd-time-group { flex: 0 0 240px; max-width: 240px; }
.vsd-hr-group { flex: 0 0 90px; max-width: 90px; }
.vsd-bp-group { flex: 0 0 150px; max-width: 150px; }
.vsd-spo2-group { flex: 0 0 90px; max-width: 90px; }
.vsd-notes-group { flex: 1 1 240px; min-width: 200px; }
.vsd-actions-group { flex: 1 1 280px; display: flex; gap: 0.5rem; }
.vsd-actions-group .vsd-btn-inline { flex: 1 1 auto; }

@media (max-width: 640px) {
    .vsd-time-group { flex: 1 1 100%; max-width: none; }
}

/* Buttons - Compact */
.vsd-btn-inline {
    flex: 1;
    padding: 0.5rem 0.8rem;
    border: 1px solid #1f3a4d;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: all .25s;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    background: #173042;
    color: #e6e9ef;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.vsd-btn-primary-inline { background: #004d6e; border-color: #007fb3; }
.vsd-btn-primary-inline:hover { background: #007fb3; box-shadow: 0 0 6px 1px #27c3ff; }
.vsd-btn-secondary-inline { background: #2e3a46; border-color: #546878; }
.vsd-btn-secondary-inline:hover { background: #3b4a54; border-color: #00b5ff; }
.vsd-btn-danger-inline { background: #3a1421; border-color: #ff4fa8; color: #ff9dbd; }
.vsd-btn-danger-inline:hover { background: #4a1a2d; box-shadow: 0 0 6px 1px #ff4fa8; }

/* Chart Area - Compact */
.vsd-chart-area {
    background: linear-gradient(170deg,rgba(22,34,46,.8),rgba(14,22,30,.85));
    border: 1px solid #20303f;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 1px #20303f, 0 2px 8px -4px #000;
}

.vsd-chart { width: 100%; height: auto; max-height: 350px; }
.vsd-line { fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.vsd-line-hr { stroke: #ec4899; }
.vsd-line-hr-faded { stroke: #ec4899; opacity: 0.4; stroke-width: 1.5; }
.vsd-line-bp-sys { stroke: #f59e0b; }
.vsd-line-bp-sys-faded { stroke: #f59e0b; opacity: 0.4; stroke-width: 1.5; }
.vsd-line-bp-dia { stroke: #8b5cf6; }
.vsd-line-spo2 { stroke: #10b981; }
.vsd-line-spo2-faded { stroke: #10b981; opacity: 0.4; stroke-width: 1.5; }
.vsd-band-normal { fill: rgba(16, 185, 129, 0.08); }
.vsd-gridline { stroke: #20303f; stroke-dasharray: 4, 4; opacity: 0.5; }

.vsd-point {
    fill: white;
    stroke: #00d5ff;
    stroke-width: 2;
    transition: all .25s;
    cursor: pointer;
}

.vsd-point:hover {
    r: 6;
    filter: drop-shadow(0 0 6px rgba(0, 213, 255, 0.8));
}

.vsd-point-selected {
    r: 6;
    fill: #00d5ff;
    filter: drop-shadow(0 0 8px rgba(0, 213, 255, 1));
}

.vsd-axis { stroke: #1e2733; stroke-width: 1.5; }
.vsd-axis-label { fill: #6b7a8a; font-size: 11px; font-weight: 500; }
.vsd-empty { text-align: center; padding: 1rem; color: #6b7a8a; }
.vsd-empty-icon { font-size: 2.5rem; margin-bottom: 0.5rem; opacity: 0.5; }

/* Entries List - Compact */
.vsd-entries-list-compact {
    background: linear-gradient(170deg,rgba(22,34,46,.8),rgba(14,22,30,.85));
    border: 1px solid #20303f;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 1px #20303f, 0 2px 8px -4px #000;
}

.vsd-entries-header-compact {
    background: linear-gradient(145deg,#10151d 0%, #131b25 45%, #0c1117 100%);
    padding: 0.7rem;
    border-bottom: 1px solid #1e2733;
    font-weight: 600;
    color: #77cfff;
}

.vsd-entries-title-compact {
    display: block;
    font-size: 0.75rem;
    letter-spacing: .03rem;
    text-transform: uppercase;
}

.vsd-entries-scroll-compact {
    max-height: 250px;
    overflow-y: auto;
}

.vsd-entry-row-compact {
    display: grid;
    grid-template-columns: 70px 50px 80px 50px auto;
    gap: 0.75rem;
    padding: 0.5rem 0.8rem;
    border-bottom: 1px solid #20303f;
    align-items: center;
    cursor: pointer;
    transition: all .25s;
    font-size: 0.75rem;
}

.vsd-entry-row-compact:hover {
    background: linear-gradient(90deg,rgba(0,181,255,.1),rgba(0,115,255,.12));
}

.vsd-entry-row-compact.selected {
    background: linear-gradient(90deg,rgba(0,181,255,.2),rgba(0,115,255,.22));
    border-left: 2px solid #00d5ff;
    padding-left: calc(0.8rem - 2px);
}

.vsd-entry-time-compact { color: #00d5ff; font-weight: 600; font-size: 0.75rem; }
.vsd-entry-data { color: #b8cee8; font-size: 0.7rem; }
.vsd-entry-note-compact { color: #6b7a8a; }

.vsd-input-datetime { min-width: 230px; width: 230px; }

/* ===========================
   NUMBER PAD MODAL STYLES
   =========================== */

.number-pad-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: np-fadeIn 0.2s ease-out;
    overflow-y: auto;
}

@keyframes np-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.number-pad-modal {
    background: white;
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-xl, 0 20px 25px -5px rgb(0 0 0 / 0.1));
    width: 90%;
    max-width: 420px;
    max-height: 95vh;
    padding: 1.5rem;
    position: relative;
    animation: np-slideUp 0.3s cubic-bezier(0.05, 0.89, 0.25, 1.02);
    margin: auto;
    overflow-y: auto;
}

@keyframes np-slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.number-pad-header {
    margin-bottom: 1.25rem;
    text-align: center;
}

.number-pad-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900, #111827);
    margin: 0 0 1rem 0;
}

.number-pad-display {
    background: var(--gray-50, #f9fafb);
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: var(--radius-lg, 12px);
    padding: 1rem 1.25rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-600, #159691);
    text-align: right;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-family: 'Consolas', 'Courier New', monospace;
    letter-spacing: 0.05em;
}

.number-pad-body {
    margin-bottom: 1.25rem;
}

.number-pad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.number-pad-btn {
    background: var(--gray-50, #f9fafb);
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: var(--radius-md, 8px);
    padding: 1.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900, #111827);
    cursor: pointer;
    transition: all .2s;
    box-shadow: var(--shadow-sm, 0 1px 2px 0 rgb(0 0 0 / 0.05));
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.number-pad-btn:hover {
    background: var(--primary-50, #e6faf9);
    border-color: var(--primary-300, #66e0db);
    transform: translateY(-1px);
}

.number-pad-btn:active {
    transform: translateY(0) scale(0.98);
    background: var(--primary-100, #ccf5f3);
}

.number-pad-btn-special {
    background: var(--gray-100, #f3f4f6);
    color: var(--primary-600, #159691);
    font-size: 1.2rem;
}

.number-pad-btn-special:hover {
    background: var(--primary-50, #e6faf9);
}

.number-pad-actions {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0.75rem;
}

.number-pad-btn-backspace {
    background: var(--gray-100, #f3f4f6);
    font-size: 1.5rem;
}

.number-pad-btn-backspace:hover {
    background: var(--warning-50, #fffbeb);
    border-color: var(--warning-500, #f59e0b);
}

.number-pad-btn-clear {
    background: var(--error-50, #fef2f2);
    border-color: var(--error-500, #ef4444);
    color: var(--error-600, #dc2626);
    font-size: 1rem;
}

.number-pad-btn-clear:hover {
    background: var(--error-100, #fee2e2);
}

.number-pad-footer {
    display: flex;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200, #e5e7eb);
}

.number-pad-footer .btn,
.number-pad-footer button {
    flex: 1;
    margin: 0;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all .2s;
    border: 1px solid var(--gray-300, #d1d5db);
    background: white;
    color: var(--gray-700, #374151);
}

.number-pad-footer .btn-primary,
.number-pad-footer button:last-child {
    background: var(--primary-600, #159691);
    border-color: var(--primary-600, #159691);
    color: white;
}

.number-pad-footer .btn-primary:hover,
.number-pad-footer button:last-child:hover {
    background: var(--primary-700, #10716d);
}

/* Touch-friendly adjustments for mobile */
@media (max-width: 480px) {
    .number-pad-modal {
        width: 95%;
        padding: 1.25rem;
    }

    .number-pad-display {
        font-size: 1.5rem;
        min-height: 3rem;
        padding: 0.85rem 1rem;
    }

    .number-pad-btn {
        padding: 1rem;
        font-size: 1.3rem;
    }

    .number-pad-grid {
        gap: 0.6rem;
    }

    .number-pad-actions {
        gap: 0.6rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .number-pad-modal {
        max-height: 90vh;
        overflow-y: auto;
    }

    .number-pad-btn {
        padding: 0.85rem;
    }
}

/* ===========================
   RECONNECT MODAL STYLES
   =========================== */

.components-reconnect-first-attempt-visible,
.components-reconnect-repeated-attempt-visible,
.components-reconnect-failed-visible,
.components-pause-visible,
.components-resume-failed-visible,
.components-rejoining-animation {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible,
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation,
#components-reconnect-modal.components-reconnect-paused .components-pause-visible,
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible,
#components-reconnect-modal.components-reconnect-retrying,
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible,
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation,
#components-reconnect-modal.components-reconnect-failed,
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible {
    display: block;
}

#components-reconnect-modal {
    background: white;
    color: var(--gray-900, #111827);
    width: 24rem;
    max-width: 90vw;
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: var(--radius-xl, 16px);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: reconnect-fadeOut 0.5s both;
}

#components-reconnect-modal[open] {
    animation: reconnect-slideUp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s,
               reconnect-fadeIn 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

#components-reconnect-modal::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: reconnect-fadeIn 0.5s ease-in-out;
    opacity: 1;
}

@keyframes reconnect-slideUp {
    0% { transform: translateY(30px) scale(0.95); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes reconnect-fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes reconnect-fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.components-reconnect-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

#components-reconnect-modal p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-600, #4b5563);
}

#components-reconnect-modal button {
    border: 1px solid var(--primary-600, #159691);
    background: var(--primary-600, #159691);
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-md, 8px);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

#components-reconnect-modal button:hover {
    background: var(--primary-700, #10716d);
    transform: translateY(-1px);
}

#components-reconnect-modal button:active {
    transform: translateY(0);
}

.components-rejoining-animation {
    position: relative;
    width: 80px;
    height: 80px;
}

.components-rejoining-animation div {
    position: absolute;
    border: 3px solid var(--primary-500, #1abbb5);
    opacity: 1;
    border-radius: 50%;
    animation: rejoining-ring 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2) {
    animation-delay: -0.5s;
    border-color: var(--primary-300, #66e0db);
}

@keyframes rejoining-ring {
    0% { top: 40px; left: 40px; width: 0; height: 0; opacity: 0; }
    4.9% { top: 40px; left: 40px; width: 0; height: 0; opacity: 0; }
    5% { top: 40px; left: 40px; width: 0; height: 0; opacity: 1; }
    100% { top: 0px; left: 0px; width: 80px; height: 80px; opacity: 0; }
}

/* ===========================
   VSD RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .vsd-tabs {
        gap: 0.25rem;
    }

    .vsd-tab {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }

    .vsd-kpi-bar-compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .vsd-btn-inline {
        width: 100%;
    }

    .vsd-entry-row-compact {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .vsd-entry-time-compact::before {
        content: 'Time: ';
        color: #6b7a8a;
        font-weight: normal;
        margin-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .vsd-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .vsd-chart {
        max-height: 300px;
    }
}

/* VSD scrollbar */
.vsd-entries-scroll-compact::-webkit-scrollbar {
    width: 8px;
}

.vsd-entries-scroll-compact::-webkit-scrollbar-track {
    background: #0d141b;
}

.vsd-entries-scroll-compact::-webkit-scrollbar-thumb {
    background: #20303f;
    border-radius: 4px;
}

.vsd-entries-scroll-compact::-webkit-scrollbar-thumb:hover {
    background: #2d4254;
}
