.simple-paystack-donation-form {
    max-width: 500px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.donation-form-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="number"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}
/*
.amount-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.amount-tab {
    position: relative;
    cursor: pointer;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.amount-tab input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.amount-tab:hover {
    border-color: #0073aa;
    background: #f0f0f0;
}

.amount-tab input[type="radio"]:checked + .amount-value {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.amount-value {
    display: block;
    font-weight: bold;
    color: #333;
}

.custom-amount-field {
    margin-top: 15px;
} */
.amount-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.amount-tab {
    position: relative;
    cursor: pointer;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: #f9f9f9;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 80px;
    text-align: center;
    box-sizing: border-box;
}

.amount-tab input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
    top: 0;
    left: 0;
}

.amount-tab:hover {
    border-color: #0073aa;
    background: #e6f7ff;
}

.amount-tab input[type="radio"]:checked + .amount-value {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.amount-value {
    display: block;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
}

/* Focus state */
.amount-tab input[type="radio"]:focus + .amount-value {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .amount-tabs {
        flex-direction: column;
    }

    .amount-tab {
        min-width: auto;
    }
}
.paystack-donation-button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.paystack-donation-button:hover {
    background: #005a87;
}

.paystack-donation-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.donation-form .error {
    color: #dc3232;
    margin: 10px 0;
    padding: 10px;
    background: #ffeaea;
    border: 1px solid #ffcccc;
    border-radius: 4px;
}

.donation-form .success {
    color: #46b450;
    margin: 10px 0;
    padding: 10px;
    background: #f0ffe6;
    border: 1px solid #ccffcc;
    border-radius: 4px;
}