body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 2rem;
    background: #0b1021;
    color: #f5f5f5;
}

.cpu-temp {
    position: fixed;
    top: 0.5rem;
    left: 0.75rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

h1, h2, h3 {
    color: #f5f5f5;
}

.card {
    background: #161b33;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 1px #222a4d;
}

.metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.metric {
    flex: 1 1 160px;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    background: #1f2645;
}

.metric-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: 0.7;
}

.metric-value {
    font-size: 1.3rem;
    margin-top: 0.25rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

th, td {
    padding: 0.4rem 0.6rem;
    text-align: right;
    border-bottom: 1px solid #242a4a;
}

th {
    text-align: right;
    background: #171d37;
    position: sticky;
    top: 0;
    z-index: 1;
}

th:first-child, td:first-child,
th:nth-child(2), td:nth-child(2) {
    text-align: left;
}

tbody tr:nth-child(even) {
    background: #14192f;
}

a, a:visited {
    color: #7bd7ff;
}

canvas {
    max-width: 100%;
    background: #0b1021;
}

.table-wrapper {
    max-height: 400px;
    overflow: auto;
    border-radius: 6px;
    border: 1px solid #242a4a;
}