/* style.css */

body {
    font-family: 'Inter', sans-serif;
    background: #f0fdf4; /* Latar belakang hijau mint yang lebih lembut */
    color: #1a202c;
}

/* Kustomisasi gaya button dari html5-qrcode */
.html5-qrcode-button {
    background-color: #006400 !important;
    color: #ffffff !important;
    border-radius: 9999px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.2s !important;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.html5-qrcode-button:hover {
    background-color: #004d00 !important;
    transform: translateY(-2px);
}

/* Gaya untuk Loading Spinner */
.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}