/* style.css */

/* Menggunakan font Inter sebagai default dari Google Fonts */
body {
    font-family: 'Inter', sans-serif;
}

/* Style untuk Popup Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Latar belakang gelap transparan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
}

.modal-box {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem; /* Sudut lebih bulat */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
}

.modal-overlay:not(.hidden) .modal-box {
    transform: scale(1);
}

/* Styling untuk tombol berdasarkan status popup */
.popup-button-success {
    background-color: #2563eb; /* blue-600 */
}
.popup-button-success:hover {
    background-color: #1d4ed8; /* blue-700 */
}

.popup-button-gagal {
    background-color: #dc2626; /* red-600 */
}
.popup-button-gagal:hover {
    background-color: #b91c1c; /* red-700 */
}
