body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

.console {
    background-color: #333;
    border: 1px solid #ddd;
    padding: 10px;
    width: 100%;
    height: 450px; /* Fixed height for console output */
    overflow-y: scroll; /* Add scroll for long outputs */
    white-space: pre-wrap; /* Ensure long lines wrap */
    max-width: 700px;
    color: #b9b9b9;
    font-size: 11px;
}

/* Additional styles for aesthetics */
.btn {
    width: 150px; /* Fixed width for buttons */
}

h1, h2 {
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .container {
        padding: 15px;
    }
}
