body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: white;
    overflow-x: hidden;
}

#error-display {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #900;
    color: white;
    padding: 20px;
    z-index: 9999;
    font-family: monospace;
    white-space: pre-wrap;
    border-bottom: 2px solid #f00;
    max-height: 50vh;
    overflow-y: auto;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}