/* Dashboard Engine 2026 - BrokenDetector.com */
:root {
    --side-bg: #121417;
    --main-bg: #1a1d21;
    --neon-alert: #ff3e3e; /* "Broken" Alert Red */
    --text-dim: #94a3b8;
}

body {
    display: flex;
    margin: 0;
    height: 100vh;
    font-family: 'JetBrains Mono', monospace;
    background-color: var(--main-bg);
    color: white;
}

/* Fixed Sidebar */
nav {
    width: 280px;
    background-color: var(--side-bg);
    border-right: 1px solid #2d333b;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

.status-light {
    width: 12px;
    height: 12px;
    background-color: var(--neon-alert);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--neon-alert);
}

main {
    flex-grow: 1;
    padding: 60px;
    overflow-y: auto;
}

.glitch-header {
    font-size: 3rem;
    text-transform: uppercase;
    border-left: 4px solid var(--neon-alert);
    padding-left: 20px;
    margin-bottom: 40px;
}

.terminal-box {
    background: #000;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #333;
    font-size: 0.9rem;
    line-height: 1.8;
}

.btn-outline {
    margin-top: 40px;
    padding: 15px 30px;
    border: 1px solid var(--neon-alert);
    color: var(--neon-alert);
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--neon-alert);
    color: white;
}
