body {
    background-color: #0d0d0d;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 80%;
    max-width: 800px;
    border: 1px solid #00ff00;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.header {
    background-color: #1a1a1a;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #00ff00;
}

.terminal {
    padding: 20px;
    height: 400px;
    overflow-y: auto;
    background-color: #0d0d0d;
}

/* Scrollbar Styling */
.terminal::-webkit-scrollbar {
    width: 6px; /* Width of the scrollbar */
}

.terminal::-webkit-scrollbar-track {
    background: #1a1a1a; /* Track color */
}

.terminal::-webkit-scrollbar-thumb {
    background: #00ff00; /* Scrollbar color */
    border-radius: 6px; /* Rounded corners for the scrollbar */
}

.terminal::-webkit-scrollbar-thumb:hover {
    background: #80ff80; /* Lighter color on hover */
}

#output {
    white-space: pre-wrap; /* Preserve whitespace */
}

#input {
    width: 100%;
    background-color: #1a1a1a;
    color: #00ff00;
    border: none;
    outline: none;
    padding: 10px;
    margin-top: 10px;
}

.footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 10px;
    border-top: 1px solid #00ff00;
}
