body {
    background-color: #0d0d0d;
    color: #00ff00; /* Bright green */
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.terminal {
    border: 2px solid #00ff00;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    background-color: #000;
}
button {
    background-color: #00ff00;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-family: inherit;
    font-weight: bold;
}
.hidden {
    display: none;
}
#output {
    margin-top: 20px;
}
#log {
    white-space: pre-wrap; /* Allows text to wrap */
    height: 150px;
    overflow-y: scroll;
    border: 1px dashed #00ff00;
    padding: 10px;
}
.progress-container {
    border: 1px solid #00ff00;
    background-color: #333;
}
.progress-bar {
    width: 0%;
    height: 20px;
    background-color: #00ff00;
    transition: width 0.1s linear;
}