body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th, .table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.table th {
    background-color: #f8f8f8;
}

.table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.status-online {
    color: #00ff3c;
    font-weight: bold;
}

.status-offline {
    color: #dc3545;
    font-weight: bold;
}

.status-summary {
    text-align: center;
    margin-bottom: 20px;
}

.status-summary-text {
    font-size: 1.2em;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
}

.status-online {
    color: #28a745;
    background-color: #eafaf1;
}

.status-offline {
    color: #dc3545;
    background-color: #fce8e6;
}