body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #333;
    margin-bottom: 10px;
}

.description {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

/* Gaya untuk persentase total Khodam */
.khodam-total {
    margin-bottom: 40px;
}

.progress-bar {
    width: 80%;
    height: 30px;
    background-color: #eee;
    border-radius: 12px;
    margin: 0 auto 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background-color: #007BFF;
    width: 0;
    transition: width 0.5s ease;
}

#khodam-total-percentage {
    font-size: 1.2em;
    color: #333;
}

/* Gaya untuk tabel statistik server */
.server-speed {
    margin-bottom: 40px;
}

.stat-table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-table th, .stat-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.stat-table th {
    background-color: #f7f7f7;
}

.stat-table td {
    color: #333;
}

footer {
    margin-top: 40px;
    padding: 10px 0;
    background-color: #333;
    color: white;
    font-size: 0.9em;
}

footer p {
    margin: 0;
}