body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Source Code Pro', monospace;
    font-size: 16px;
    line-height: 1.6;
}

#terminal {
    padding: 20px;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

#output {
    flex-grow: 1;
}

#input-line {
    display: flex;
}

.prompt {
    color: #a600ff;
    margin-right: 10px;
}

#input {
    background-color: transparent;
    border: none;
    color: #e0e0e0;
    font-family: 'Source Code Pro', monospace;
    font-size: 16px;
    flex-grow: 1;
    outline: none;
}

.command-output {
    margin-bottom: 10px;
}

.command-output .prompt {
    display: block;
}

.directory {
    color: #58a6ff; /* A light blue color */
    font-weight: bold;
}

#error-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#error-message {
    font-size: 10vw;
    color: red;
    text-shadow: 0 0 10px red, 0 0 20px red, 0 0 30px red;
    animation: glitch 1s infinite;
}

@keyframes glitch {
    0% {
        transform: translate(0, 0);
    }
    20% {
        transform: translate(-5px, 5px);
    }
    40% {
        transform: translate(-5px, -5px);
    }
    60% {
        transform: translate(5px, 5px);
    }
    80% {
        transform: translate(5px, -5px);
    }
    100% {
        transform: translate(0, 0);
    }
}
