/* AsianCheckout QR Payment Gateway Styles */

.asiancheckout-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.asiancheckout-qr-box {
    background: #f9f9f9;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
}

.asiancheckout-qr-box h2 {
    color: #333;
    margin-bottom: 20px;
}

.asiancheckout-qr-box img {
    max-width: 300px;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
}

.asiancheckout-timer {
    background: #e8f4f8;
    border: 1px solid #b8dce6;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
    font-size: 16px;
}

.asiancheckout-timer span:first-child {
    color: #666;
    margin-right: 10px;
}

#timer-display {
    font-weight: bold;
    font-size: 18px;
    color: #2271b1;
}

.asiancheckout-status-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

.asiancheckout-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Additional styles for other container classes */
#asiancheckout-qr-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.qr-code-container {
    margin: 20px 0;
}

.qr-code-container img {
    max-width: 300px;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.status-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}
