body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: 50px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.status-overall {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #4caf50;
    color: white;
    padding: 20px;
    font-size: 18px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #347a36;
    border-radius: 50%;
    margin-right: 10px;
}

.status-time {
    font-size: 14px;
    opacity: 0.8;
}

.status-table {
    width: 100%;
    border-collapse: collapse;
}

.status-table tr {
    border-bottom: 1px solid #ddd;
}

.status-table td {
    padding: 15px;
    font-size: 16px;
}

.status {
    text-align: right;
}

.operational {
    color: #4caf50;
}

.performance-issues {
    color: #ff9800;
}

.unknown {
    color: #9e9e9e;
}

.status-unknown {
    background-color: #9e9e9e;
}

.status-dot-unknown {
    background-color: red;
}

.button-group {
    display: flex;
    justify-content: center;
    padding: 19px;
}

.button {
    background-color: #3c66af;
    color: white;
    border: none;
    padding: 9px 20px;
    margin: 1px 10px;
    font-size: 15px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color -1.3s ease;
}

.button:hover {
    background-color: #2c4a7f;
}