#give-custom-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 40px;
}

.input-error {
    border: 1px solid red !important;
}
#payment-form #card-errors {
    color: red;
    margin-top: -10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.field-error {
    color: red;
    font-size: 0.9rem;
    margin-top: -10px;
}

.donation-card {
    border: 1px solid #ccc;
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    width: 180px;
    background: #f9f9f9;
    transition: 0.3s;
}

.donation-card:hover {
    border-color: #0073aa;
    background: #eef6ff;
}

.donate-btn {
    margin-top: 10px;
    background: #0073aa;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Modal styles */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 20px 30px;
    border-radius: 8px;
    max-width: 400px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.back-btn {
    margin-top: 15px;
    background: #777;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Modal Style */
.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.modal-close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

/* Form inputs */
#user-details-form input,
#payment-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

#user-details-form input:focus,
#payment-form input:focus {
    border-color: #4CAF50;
    outline: none;
}

/* Buttons */
button {
    padding: 12px 20px;
    border: none;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.back-btn {
    background: transparent;
    color: #333;
    font-size: 14px;
    padding: 8px 0;
}

/* Stripe Element */
#stripe-element {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: white;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.StripeElement {
    width: 100%;
    padding: 10px;
}

.StripeElement--focus {
    border-color: #4CAF50;
}

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


#pricing-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding-bottom: 60px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-tier-title {
    /* width: 100%; */
    width: 91%;
    font-weight: 700;
    font-size: 26px;
    display: flex;
    justify-content: center;
    border-left: 5px solid #1e4c6e;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 8px;
    color: #1e4c6e;
    margin: 25px 0px;
}

.bronze .card-header {
    background-color: #a06c22;
}

.silver .card-header {
    background-color: #979696;
}

.gold .card-header {
    background-color: #e4b518;
}

.emerald .card-header {
    background-color: #4CAF50;
}

.ruby .card-header {
    background-color: #AA3337;
}

.sapphire .card-header {
    background-color: #155d8d;
}
.pricing-card {
    width: 330px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e7e7;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}
.pricing-price {
    font-size: 32px;
    font-weight: 900;
    margin: 20px 0 10px;
    color: #1e4c6e;
}
.pricing-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    padding: 0px 15px;
}
.pricing-card .card-header {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    padding: 15px 0;
    text-transform: uppercase;
}
.pricing-desc span {
    font-size: 15px;
    color: #000;
}
.pricing-desc .desc-title {
    font-weight: 500;
}
.pricing-recurring {
    font-size: 13px;
    color: #000000;
    margin-bottom: 20px;
}
.pricing-desc {
    font-size: 14px;
    color: #000000;
    margin-bottom: 5px;
    padding: 0px 25px;
}
.choose-btn:focus {
    background-color: #1d7b64;
}
.pricing-recurring {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}

.choose-btn {
    background-color: #32a58c;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 25px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
}
.read-more-toggle {
    display: inline-block;
    margin-top: 5px;
    color: #0073aa;
    cursor: pointer;
    font-size: 0.9em;
    text-decoration: underline;
}

.choose-btn:hover {
    background-color: #32a58c;
}

@media (max-width: 900px) {
    .pricing-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .pricing-card {
        width: 90%;
    }
}


.givewp-thankyou-wrap {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: "Helvetica Neue", sans-serif;
}

.receipt-header-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
}

.receipt-header-description {
    font-size: 1rem;
    color: #555;
}

.givewp-form-secure-badge {
    display: inline-block;
    color: #28a745;
    font-weight: 600;
    font-size: 1rem;
}

.details {
    margin-top: 2rem;
}

.details-table {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.details-row {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
}

.details-row .detail {
    font-weight: 600;
    color: #333;
}

.details-row .value {
    color: #555;
}

.receipt-footer {
    margin-top: 2rem;
    text-align: center;
}

.donor-dashboard-link.btn {
    padding: 0.6rem 1.2rem;
    background-color: #1c87c9;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.donor-dashboard-link.btn:hover {
    background-color: #155d8d;
}
.donation-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.donation-actions #donate-button {
    background: #1d7b64;
    color: white;
    border: none;
}
.donate-btn {
    width: auto !important;
    align-self: center;
}
 
.pricing-card {
    width: 330px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e7e7;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}