* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #2b2b2b;
    color: #e0e0e0;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1f1f1f;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    color: #00bcd4;
    margin-bottom: 10px;
}

.status {
    font-size: 1.2rem;
    color: #9e9e9e;
}

.status-active {
    color: #4caf50;
}

.status-down {
    color: #d11b2a;
}

.footer {
    display: table;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

section {
    width: 48%;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5rem;
    color: #00bcd4;
    margin-bottom: 10px;
}

.metric {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.metric:hover {
    background-color: #444;
}

p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.alert ul {
    list-style-type: none;
    padding-left: 0;
}

.alert li {
    background-color: #444;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
}

.alert-time {
    font-weight: bold;
    color: #ff9800;
}

.alert li span {
    display: inline-block;
    margin-right: 10px;
}