body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.label {
    display: inline-block;
    width: 70px;
}

h1 {
    text-align: center;
}

#server-status {
    margin-top: 20px;
}

#server-status p {
    margin: 10px 0;
}

#server-online.online {
    color: green;
}

#server-online.offline {
    color: red;
}
