/* Payment styles */
.payment-error {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #fff0f0;
    border-left: 4px solid #ff5555;
    border-radius: 4px;
    color: #700;
    font-size: 0.9rem;
    text-align: left;
}

.payment-error p {
    margin: 0.5rem 0;
}

.payment-error small {
    color: #999;
    display: block;
    margin-top: 0.5rem;
    word-break: break-word;
}

/* Processing indicator */
.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#payment-processing {
    margin: 1rem 0;
    text-align: center;
}

#payment-processing p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}
