/* Basic styling for the page */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background-image: url('bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Container for the content */
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    text-align: center;
}

h1 {
    color: #4CAF50;
}

.status {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}

.online {
    color: #4CAF50;
}

.offline {
    color: #F44336;
}

.ping-green {
    color: #4CAF50;
}

.ping-orange {
    color: #FF9800;
}

.ping-red {
    color: #F44336;
}

ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 auto;
    width: fit-content;
}

li {
    padding: 5px 0;
}

/* Styling for the server version text */
.version-text {
    font-size: 0.8em;
    color: #aaa; /* Gray color */
    margin-top: -15px; /* Adjust to bring it closer to the status */
    margin-bottom: 20px;
    display: block; /* Ensure it takes its own line */
}
