/* ═══════════════════════════════════════
   2. BASE SCROLLBAR & HTML SETUP (base-5.css)
═══════════════════════════════════════ */
html, body {
    height: 100%;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    
    background: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

/* CUSTOM COMPONENT OVERRIDES */
terminal-header {
    display: block;
    flex-shrink: 0;
}
terminal-header .topbar {
    width: 100%;
}
standard-footer {
    display: block;
    width: 100%;
    flex-shrink: 0;
    margin-top: auto;
}

.brand-text-vp {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #ffffff;
}

/* Global scrollbar styling */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}