/* Square Payment Form Styles */
.square-payment-form {
    max-width: 500px;
    margin: 0 auto;
}

#card-container {
    min-height: 90px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
}

/* Square SDK injects styles, but we can add some custom touches */
.square-payment-form .alert {
    border-radius: 8px;
}

.square-payment-form .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Button styling for payment actions */
.square-payment-form .btn-pay {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 20px;
}

/* Loading state */
.square-payment-form.processing #card-container {
    opacity: 0.6;
    pointer-events: none;
}
