.donation-button-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: pulse 2s infinite;
}

.donation-button-fixed button {
    background-color: var(--primary-color);
    color: #ffff;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.donation-button-fixed button:hover {
    /* background-color: #e6af00; */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.donation-button-fixed i {
    font-size: 18px;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Donation Modal */
.donation-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    min-width: auto;
    width: 46%;
    max-width: 900px;

    min-height: 72vh;
    overflow-y: auto;
    height: auto;

    background-color: white;
    border-radius: 10px;
    z-index: 1999;
    display: none;
    opacity: 0;
    transition: all 0.3s;
}

.donation-modal.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.donation-modal-content {
    padding: 8px 24px 8px 24px;
}

.close-modal {
    position: absolute;
    top: 7px;
    right: 8px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: color 0.3s;
    background: var(--primary-color);
    border-radius: 100%;
    height: 31px;
    width: 30px;
    font-weight: 700;
    border: none;
    text-align: center;
}

.close-modal:hover {
    color: black;
    background-color: white;
}

.donation-header {
    text-align: center;
}

.modal-logo {
    width: 80px;
}




/* 
.container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 500px;
    overflow: hidden;
    padding: 15px;
    border: 2px solid #006600;
} */

.tabs {
    display: flex;
    border-bottom: 2px solid var(--primary-color);
    margin-top: 11px;
}

.tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    /* background: #eee; */
    /* font-weight: bold; */
    color: black;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;

    /* border-right: 1px solid #006600; */
}

.tab:last-child {
    border-right: none;
}

.tab.active {
    background: var(--primary-color);
    /* border-bottom: 3px solid #006600; */
    color: whitesmoke;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.content {
    padding: 20px 0 0 0;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0px !important;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    /* font-weight: bold; */
    margin-bottom: 5px;
    color: black;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    /* background-color: #f4eaea; */
    background-color: #fff;

}

.form-group input:focus,
.form-group select:focus {
    border: 1px solid grey;
    /* Full border styling */
    outline: none;
    /* Optional: removes blue default outline */
}



input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}


.button-container {
    display: flex;
    justify-content: center;
    margin-top: 4px;
    margin-bottom: 10px;
}

.button {
    padding: 10px 20px;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.button:hover {
    background: #004d00;
}

.button {
    width: 50%;
    padding: 10px;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    /* position: absolute;
    left: 30%; */
}



hr {
    border: none;
    height: 2px;
    background: var(--primary-color);
    margin: 15px 0;
}

.qr-content {
    text-align: center;
    /* display: none; */
}

.qr-content img {
    width: 200px;
    margin-top: 10px;
    display: inline;
}

.hidden {
    display: none;
}

.checkbox {
    display: flex;
    align-items: center;
    color: black;
}

.supprot-text {
    font-size: 21px !important;
    text-align: center;
}

@media (max-width: 768px) {
    .donation-modal {
        width: 90%;
        height: 80vh;
    }

    .form-row {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .tabs {
        flex-direction: column;
    }

    .tab {
        border-bottom: 1px solid var(--primary-color);
        border-radius: 0;
    }

    .tab.active {
        border-radius: 5px;
    }

    .qr-content img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .donation-button-fixed {
        bottom: 20px;
        right: 20px;
    }

    .donation-button-fixed button {
        padding: 10px 16px;
        font-size: 14px;
        gap: 8px;
    }

    .close-modal {
        height: 28px;
        width: 28px;
        font-size: 18px;
    }

    .modal-logo {
        width: 60px;
    }

    .form-group input,
    .form-group select {
        padding: 8px;
        font-size: 14px;
    }

    .button {
        font-size: 14px;
        padding: 8px;
    }

    .donation-modal-content {
        padding: 8px 16px;
    }

    .qr-content img {
        width: 120px;
    }

    .logo h3 {
        font-size: 18px !important;
    }
}

.text-danger {
    color: red !important;
}