:root {
    --bg: #0b0e14;
    --card: #151921;
    --border: #232936;
    --text-main: #f0f0f0;
    --text-dim: #8b949e;
    --blue-maintenance: #3b82f6;
    --green-up: #2ecc71;
}

body.status-body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 60px 20px;
}

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

.main-header {
    text-align: left;
    margin-bottom: 40px;
}

.main-header h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.last-update {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Groupes / Dossiers */
.group-container {
    margin-top: 40px;
}

.group-title {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Cartes de Service (Style Capture) */
.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s ease;
}

.service-card:hover {
    border-color: #30363d;
}

.service-name {
    font-size: 1rem;
    font-weight: 500;
}

/* Badges de Statut (Style Better Stack) */
.status-badge {
    display: flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(30, 37, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-maintenance { color: var(--blue-maintenance); }
.badge-online { color: var(--green-up); }

.icon {
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer {
    margin-top: 60px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
}
