body {
    font-family: -apple-system, system-ui, sans-serif;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.5;
}

.service, .incident {
    margin: 10px 0;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.service {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-name {
    font-weight: 600;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.controls {
    margin: 20px 0;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background: #4a5568;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.btn-danger {
    background: #e53e3e;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

textarea {
    height: 100px;
}

.operational {
    color: #38a169;
}

.operational::before {
    content: "●";
    margin-right: 8px;
    color: #38a169;
}

.degraded {
    color: #dd6b20;
}

.degraded::before {
    content: "●";
    margin-right: 8px;
    color: #dd6b20;
}

.down {
    color: #e53e3e;
}

.down::before {
    content: "●";
    margin-right: 8px;
    color: #e53e3e;
}

.service-timestamp {
    color: #666;
    font-size: 0.9em;
}

.all-clear {
    margin: 20px 0;
    padding: 20px;
    background: #f0fff4;
    border-radius: 4px;
    color: #38a169;
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
}