body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
    background: #f6f8fa;
    margin: 0;
    padding: 40px;
}

h1 {
    margin-bottom: 20px;
}

table {
    border-collapse: collapse;
    width: 100%;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

th {
    text-align: left;
    background: #111827;
    color: white;
    padding: 12px;
}

td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

tr:hover {
    background: #f9fafb;
}

.status.success { color: #059669; font-weight: 600; }
.status.failed { color: #dc2626; font-weight: 600; }
.status.running { color: #2563eb; font-weight: 600; }
.status.queued { color: #d97706; font-weight: 600; }

button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background: #1e40af;
}