.sccc-donation-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sccc-donation-form h3 {
    text-align: center;
    color: #2E3A4D;
    margin-bottom: 20px;
    font-weight: 600;
}

.payment-method-toggle {
    margin-bottom: 20px;
    padding: 15px;
    background: #F5EFDA;
    border-radius: 6px;
    border: 1px solid #828994;
}

.payment-method-toggle label {
    display: block;
    margin-bottom: 8px;
    color: #2E3A4D;
    font-weight: 500;
    cursor: pointer;
}

.payment-method-toggle input[type="radio"] {
    margin-right: 8px;
}

.donation-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.donation-amount-btn {
    padding: 12px 20px;
    border: 2px solid #828994;
    background: white;
    color: #828994;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.donation-amount-btn:hover,
.donation-amount-btn.selected {
    background: #F4C46E;
    border-color: #F4C46E;
    color: #2E3A4D;
}

.custom-amount {
    margin-bottom: 20px;
}

.custom-amount label {
    display: block;
    margin-bottom: 5px;
    color: #2E3A4D;
    font-weight: 500;
}

.custom-amount input {
    width: 100%;
    padding: 12px;
    border: 2px solid #828994;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.donor-info {
    margin-bottom: 20px;
}

.donor-info label {
    display: block;
    margin-bottom: 5px;
    color: #2E3A4D;
    font-weight: 500;
}

.donor-info input {
    width: 100%;
    padding: 12px;
    border: 2px solid #828994;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

#payment-element-container {
    margin-bottom: 20px;
    padding: 15px;
    border: 2px solid #828994;
    border-radius: 6px;
    background: #ffffff;
}

#payment-element {
    /* Stripe Elements styling is handled by the appearance API in JS */
}

.donate-btn {
    width: 100%;
    padding: 15px;
    background: #F4C46E;
    color: #2E3A4D;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donate-btn:hover:not(:disabled) {
    background: #2E3A4D;
    color: #ffffff;
}

.donate-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.error-message {
    color: #e74c3c;
    background: #fdf2f2;
    padding: 10px;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
    border: 1px solid #f5c6cb;
}

.loading-message {
    color: #828994;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* Responsive design */
@media (max-width: 600px) {
    .sccc-donation-form {
        margin: 0 10px;
        padding: 15px;
    }
    
    .donation-amounts {
        gap: 8px;
    }
    
    .donation-amount-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Custom styling for Stripe Elements integration */
.StripeElement {
    box-sizing: border-box;
    height: 40px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}