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

body {
    font-family: monospace;
    background: #000;
    color: #fff;
    padding: 20px;
    line-height: 1.6;
}

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

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

h1 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 10px;
}

h2 {
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 10px;
}

#statusText {
    font-size: 12px;
    color: #666;
}

#statusText.online {
    color: #0f0;
}

section {
    margin-bottom: 30px;
}

.value {
    font-size: 32px;
    font-weight: normal;
}

canvas {
    width: 100%;
    height: 100px;
    border: 1px solid #333;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 5px 0;
    border-bottom: 1px solid #111;
}

td:first-child {
    color: #666;
    width: 100px;
}

td:last-child {
    text-align: right;
}

footer {
    margin-top: 60px;
    padding-top: 10px;
    border-top: 1px solid #333;
    font-size: 10px;
    color: #666;
    text-align: right;
}