.custom-donation-form{
    background-color: white;
    padding: 20px;
    border-radius: 16px;
}
.custom-donation-label{
    color: #2E3333;
    font-size: 16px;
    font-weight: 600;
    margin-top: 25px;
}
.custom-donation-input-field{
    border-radius: 30px !important;
    border-color: transparent !important;
    background: #f2f6f7;
    width: 100%;
}
.custom-donation-input-field:focus{
    background: #f2f6f7 !important;
}
.input-error {
    color: red;
    font-size: 12px;
    margin-top: -15px;
    margin-bottom: -15px;
    display: block;
}
.custom-donation-submit-btn{
    color: white;
    font-size: 16px;
    font-weight: 600;
    background: #27856a;
    width: 100%;
    margin-top: 15px;
}


.invoice-details {
    padding: 40px 20px;
    background: rgba(39, 133, 106, 0.1);
    border-radius: 12px;
}

.invoice-details-header {
    background-color: #27856a;
    padding: 20px;
}

.donated-amount {
    color: white;
    font-size: 54px;
}

.thank-you-message {
    color: white;
    font-size: 22px;
}

.invoice-details-body {
    padding: 20px 0;
}

.invoice-details-info:after {
    content: "";
    display: table;
    clear: both;
}

.invoice-details-date,
.invoice-details-invoice,
.invoice-details-transaction,
.invoice-details-status {
    float: left;
    width: 25%;
    /*border: #4a4a4a solid 1px;*/
    /*padding-left: 10px;*/
}

.invoice-details-lable {
    font-size: 28px;
}

.invoice-details-data {
    font-size: 20px;
    color: #4a4a4a;
}

.invoice-download-btn {
    padding: 20px 0;
    float: right;
}

.download-btn {
    color: white;
    font-size: 16px;
    font-weight: 600;
    background: #27856a;
}

/* Media Queries for responsiveness */
@media (max-width: 1024px) {
    .invoice-details-date,
    .invoice-details-invoice,
    .invoice-details-transaction,
    .invoice-details-status {
        width: 50%; /* 2 columns on tablets */
    }

    .invoice-download-btn {
        float: none;
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .donated-amount {
        font-size: 36px; /* Adjust font size on smaller screens */
    }

    .thank-you-message {
        font-size: 18px; /* Adjust font size on smaller screens */
    }

    .invoice-details-header {
        padding: 15px;
    }

    /* Make the invoice details appear in 2 columns on mobile */
    .invoice-details-date,
    .invoice-details-invoice,
    .invoice-details-transaction,
    .invoice-details-status {
        width: 50%; /* 2 columns on mobile */
        float: left;
        margin-bottom: 20px; /* Add space between rows */
    }

    .invoice-download-btn {
        width: 100%; /* Full width button */
        text-align: center;
    }

    .download-btn {
        width: 100%; /* Make the button take full width */
    }
}

@media (max-width: 480px) {
    .invoice-details-header {
        padding: 10px;
    }

    .donated-amount {
        font-size: 28px; /* Further reduce font size for very small screens */
    }

    .thank-you-message {
        font-size: 16px; /* Further reduce font size for very small screens */
    }

    .invoice-details-lable {
        font-size: 24px;
    }

    .invoice-details-data {
        font-size: 18px;
    }

    .invoice-download-btn {
        padding: 15px 0;
    }

    .download-btn {
        font-size: 14px; /* Adjust button font size */
    }
}

.loader-animation{
    display: flex;
    align-items: center;
    justify-content: center;
/*     margin-top: 200px; */
    /*height: 400px;*/
}
.spinner {
	margin-top: 200px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #27856a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}