/* Hacker Dark Theme */
body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: 'Consolas', 'Courier New', monospace;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.header h2 { margin: 0; font-size: 18px; color: #00e676; }

.status-dot {
    width: 12px; height: 12px;
    background-color: #d50000; /* Red */
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.blink { animation: blinker 1s linear infinite; }
@keyframes blinker { 50% { opacity: 0; } }

/* Cards & Inputs */
.card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

h3 { margin-top: 0; font-size: 14px; color: #888; border-bottom: 1px solid #333; padding-bottom: 5px; }

.form-group { margin-bottom: 12px; }
.row { display: flex; gap: 10px; }
.half { flex: 1; }

label { display: block; font-size: 11px; color: #aaa; margin-bottom: 5px; }

input, select {
    width: 100%;
    padding: 12px;
    background: #252525;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
    font-family: inherit;
    box-sizing: border-box;
    font-size: 14px;
}

input:focus, select:focus {
    border-color: #00e676;
    outline: none;
}

input:disabled, select:disabled {
    background: #151515;
    color: #555;
    border-color: #222;
}

.info-text { font-size: 10px; color: #666; margin-top: 5px; }

/* Buttons */
.action-area { margin-bottom: 20px; }

button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-main { background: #00e676; color: #000; }
.btn-main:active { transform: scale(0.98); }

.btn-secondary { background: #d50000; color: #fff; }

.btn-small {
    width: auto;
    padding: 5px 10px;
    font-size: 11px;
    background: #333;
    color: #fff;
}

/* Logs */
.log-header { display: flex; justify-content: space-between; align-items: center; }

.log-box {
    height: 250px;
    background: #000;
    border: 1px solid #333;
    padding: 10px;
    overflow-y: scroll;
    font-size: 11px;
    color: #00e676;
    border-radius: 4px;
}

.log-entry { margin-bottom: 4px; border-bottom: 1px solid #111; padding-bottom: 2px; }
.log-entry.system { color: #ffff00; }
.time { color: #666; margin-right: 5px; }
