body {
    background: #000;
    color: #00d4d4;
    font-family: 'Courier New', monospace;
    margin: 20px;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #00d4d4;
    font-weight: normal;
    text-transform: lowercase;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th {
    background: #111;
    color: #00d4d4;
    padding: 10px;
    text-align: left;
    border: 1px solid #333;
    text-transform: lowercase;
}

td {
    padding: 10px;
    border: 1px solid #333;
    color: #ccc;
}

tr:hover {
    background: #111;
}

a {
    color: #00d4d4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.status-up { color: #00ff00; }
.status-down { color: #ff0000; }
.status-degraded { color: #ffff00; }
.status-unknown { color: #666; }

.bar-green { color: #00ff00; }
.bar-yellow { color: #ffff00; }
.bar-red { color: #ff0000; }
.bar-gray { color: #888; }

.resp-fast { color: #00ff00; }
.resp-normal { color: #ffff00; }
.resp-slow { color: #ff8800; }
.resp-timeout { color: #ff0000; }

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

.header {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer {
    border-top: 1px solid #333;
    padding-top: 10px;
    margin-top: 40px;
    text-align: center;
    color: #666;
}

/* new visualizations */
.availability-bar {
    display: inline-flex;
    gap: 2px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1;
}

.response-graph {
    display: inline-flex;
    gap: 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1;
    align-items: flex-end;
    height: 14px;
}

.ascii-chart {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 9px;
    line-height: 9px;
    background: #0a0a0a;
    padding: 2px;
    border: 1px solid #333;
}

.chart-row {
    height: 9px;
    white-space: pre;
    letter-spacing: 0;
}

.graph-blue { color: #00d4d4; }
.graph-yellow { color: #ffff00; }
.graph-red { color: #ff0000; }
.bar-grey { color: #444; }
