:root {
    --bg: #0b0f1a;
    --card: #161b2b;
    --accent: #0ea5e9;
    --text: #e2e8f0;
    --danger: #ef4444;
    --success: #10b981;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.master-wrapper { width: 100%; max-width: 500px; }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.logo { font-weight: 800; letter-spacing: 1px; }
.logo span { color: var(--accent); }

.status-pill {
    background: #1e293b;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--danger); margin-right: 8px; }

.control-panel {
    background: var(--card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #2d3748;
}

.input-group { margin-bottom: 15px; display: flex; flex-direction: column; }
label { font-size: 12px; color: #94a3b8; margin-bottom: 5px; }

input, select {
    background: #0b0f1a;
    border: 1px solid #334155;
    color: white;
    padding: 12px;
    border-radius: 6px;
}

.row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

button {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

.console-wrapper { margin-top: 20px; }
.terminal-body {
    background: #000;
    height: 150px;
    padding: 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 12px;
    overflow-y: auto;
    border: 1px solid #334155;
}

.log-line.error { color: var(--danger); }
.log-line.success { color: var(--success); }
