﻿.wallet-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.wallet-btn-container {
    width: 240px;
}

apple-pay-button {
    --apple-pay-button-width: 240px;
    --apple-pay-button-height: 40px;
}

.payment-type-selector {
    margin-bottom: 24px;
    text-align: center;
}

.payment-type-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.payment-type-selector table {
    margin: 0 auto;
}

#paymentProcessingOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#paymentProcessingOverlay .spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: ptcb-spin 0.8s linear infinite;
}

@keyframes ptcb-spin {
    to {
        transform: rotate(360deg);
    }
}
