body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.container {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #2c3e50;
}

p {
    font-size: 1.2em;
    color: #7f8c8d;
}

.progress-box {
    margin: 30px 0;
}

/* Styling Progress Bar */
progress {
    width: 100%;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
}

progress::-webkit-progress-bar {
    background-color: #eee;
    border-radius: 10px;
}

progress::-webkit-progress-value {
    background-color: #1E90FF; /* Warna Bar */
    border-radius: 10px;
}

.progress-label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #1E90FF;
}

.sub-text {
    font-size: 0.9em;
    margin-top: 30px;
}
