/**
 * FullPay Transaction Styles
 * Description: Styles for the FullPay payment form
 * Version: 1.0.1
 * Author: @fullcodered powered by Grok
 * Author URI: https://fullcode.red
 */

.fullpay-transact-form {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stripe-payment {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #f9fafb;
    margin-bottom: 12px;
}

#payment-errors {
    color: #dc2626;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
}

.fullpay-transact-form button {
    background: #1d4ed8;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
    width: 100%;
}

.fullpay-transact-form button:hover {
    background: #1e40af;
}

.fullpay-transact-form button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.fullpay-success {
    color: #15803d;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

.fullpay-error {
    color: #dc2626;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

 @media (max-width: 479px) {
	 .fullpay-transact-form {
		max-width: 100%;
	 }
 }
