.content-section {
    margin: 40px 0;
}

.section-card {
    background: #ffffff;
    border: 4px solid #000000;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 1);
}

.section-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.section-subtitle {
    color: #666;
    margin-top: 8px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 10px 16px;
    border: 3px solid #000;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
}

.status-up {
    background: #dff7e7;
    color: #146c2e;
}

.status-degraded {
    background: #fff1d6;
    color: #a05a00;
}

.status-down {
    background: #ffdfe0;
    color: #9f1f28;
}

.status-history-block,
.status-services-block,
.status-incidents-block {
    margin-top: 28px;
}

.status-bars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
    gap: 6px;
    margin-top: 14px;
}

.status-bar {
    height: 28px;
    border: 2px solid #000;
    border-radius: 4px;
}

.status-service-list,
.status-incident-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.status-service-list li,
.status-incident-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ececec;
}

.status-dot-inline {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #000;
    display: inline-block;
}

.incident-warning {
    color: #a05a00;
}

.incident-critical {
    color: #9f1f28;
}

@media (max-width: 768px) {
    .section-header-row {
        flex-direction: column;
    }
}
