body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f5f7;
    color: #333;
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
    background-size: cover; 
    background-attachment: fixed; 
}
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #24292e;
}
.container h1 {
    text-align: center;
}
.status-summary {
    padding: 15px;
    border-radius: 5px;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 20px;
}
.status-summary.ok {
    background-color: #d4edda;
    color: #155724;
}
.status-summary.issues {
    background-color: #f8d7da;
    color: #721c24;
}
.status-group {
    margin-bottom: 30px;
}
.status-group h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.status-group h2 .icon {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}
.status-group p {
    margin: 0;
    font-size: 0.9em;
    color: #555;
}
.status {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.2em;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}
.status.up {
    background-color: #d4edda;
    color: #155724;
}
.status.down {
    background-color: #f8d7da;
    color: #721c24;
}
.status span {
    margin-left: 10px;
}
