* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #0a0a0a;
    color: #00ff00;
    line-height: 1.6;
    padding: 20px;
}

.console-container {
    max-width: 900px;
    margin: 0 auto;
    background: #111;
    border: 2px solid #00ff00;
    border-radius: 10px;
    overflow: hidden;
}

.console-header {
    background: #001a00;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #00ff00;
}

.console-header h1 {
    font-size: 2.2em;
    margin-bottom: 5px;
    text-shadow: 0 0 10px #00ff00;
}

.console-header p {
    color: #00cc00;
    font-size: 1.1em;
}

.console-output {
    background: #000;
    padding: 20px;
    height: 400px;
    overflow-y: auto;
    font-size: 14px;
    border-bottom: 1px solid #333;
}

.log-entry {
    margin-bottom: 8px;
    padding: 5px;
    border-left: 3px solid #00ff00;
    padding-left: 10px;
    background: rgba(0, 255, 0, 0.05);
}

.console-input {
    background: #1a1a1a;
    padding: 25px;
}

.input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #00ff00;
    font-size: 14px;
}

input, select {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #00ff00;
    color: #00ff00;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

input:focus, select:focus {
    outline: none;
    border-color: #00cc00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

button {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#startBtn {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000;
}

#startBtn:hover:not(:disabled) {
    background: linear-gradient(45deg, #00cc00, #009900);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
}

#stopBtn {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
}

#stopBtn:hover:not(:disabled) {
    background: linear-gradient(45deg, #cc0000, #990000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

button:disabled {
    background: #666 !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Scrollbar styling */
.console-output::-webkit-scrollbar {
    width: 8px;
}

.console-output::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.console-output::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 4px;
}

.console-output::-webkit-scrollbar-thumb:hover {
    background: #00cc00;
}
