/* Umum */
body {
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin-top: 50px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 10px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
    line-height: 1.2;
}

/* Input dan Tombol */
.file-input {
    margin-bottom: 20px;
    padding: 10px;
    border: 2px solid #fff;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1em;
    border-radius: 5px;
    width: 100%;
    max-width: 300px;
}

button {
    padding: 15px 25px;
    background-color: #f39c12;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    margin: 10px;
    width: 100%;
    max-width: 200px;
}

button:hover {
    background-color: #e67e22;
}

#status {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 20px;
    background-color: #ddd;
    border-radius: 10px;
    margin-top: 30px;
}

.progress-bar-fill {
    height: 100%;
    background-color: #f39c12;
    width: 0%;
    border-radius: 10px;
    transition: width 0.5s;
}

/* Responsif */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    button {
        width: 100%;
    }

    .file-input {
        width: 100%;
    }
}
