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

body {
    background: #0d0d0d;
    color: #e0e0e0;
    font-family: monospace;
    padding: 2rem 1rem;
    min-height: 100vh;
}

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

header {
    margin-bottom: 2rem;
}

.label {
    font-size: 11px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

h1 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #fff;
}

.green { color: #4ade80; }

.refresh-note {
    font-size: 12px;
    color: #444;
    margin-top: 6px;
}

.table-wrap {
    overflow-x: auto;
    border: 0.5px solid #222;
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

th {
    text-align: left;
    padding: 10px 14px;
    color: #4ade80;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    border-bottom: 0.5px solid #222;
}

td {
    padding: 10px 14px;
    color: #ccc;
    border-bottom: 0.5px solid #1a1a1a;
    white-space: nowrap;
}

tr:last-child td { border-bottom: none; }

tbody tr:hover { background: #141414; }

td.name { color: #fff; font-weight: 500; }

td.running { color: #4ade80; }
td.stopped { color: #f87171; }
td.exited  { color: #f87171; }
td.paused  { color: #facc15; }

@media (max-width: 600px) {
    body { padding: 1.25rem 0.75rem; }
    h1 { font-size: 1.4rem; }
    th, td { padding: 8px 10px; font-size: 12px; }
}