/* Default Light Mode */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
    margin: 0;
    transition: background-color 0.3s, color 0.3s;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid #007bff;
}

select, button {
    margin: 10px;
    padding: 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

button {
    background-color: #1fdd19; /* Warna latar belakang tombol */
    color: white; /* Warna teks tombol */
}

button:hover {
    background-color: #0056b3; /* Warna latar tombol saat dihover */
}

audio {
    width: 100%;
    margin-top: 15px;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    background: #ddd;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
    position: relative;
}

.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 8px;
    color: gray;
}

.progress-bar {
    width: 0%;
    height: 10px;
    background: #28a745;
    border-radius: 5px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 5px;
    color: #666;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1e1e1e;
        color: #ddd;
    }
    .container {
        background: #2c2c2c;
        box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
        border: 2px solid #007bff;
    }
    select, button {
        background-color: #444;
        color: white;
        border: 1px solid #666;
    }
    button {
        background-color: #007bff;
    }
    button:hover {
        background-color: #0056b3;
    }
    .footer {
        margin-top: 20px;
        text-align: center;
        font-size: 8px;
        color: gray;
    }
    .progress-container {
        background: #444;
    }
    .progress-bar {
        background: #00c851;
    }
}