.donation-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.donation-modal .close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1000;
    background: none;
    border: none;
    font-size: 24px;
}

.bank-table {
    width: 100%;
    margin-bottom: 1rem;
}

.bank-table th {
    background-color: var(--hot-pink-70);
    color: white;
    padding: 8px;
    text-align: center;
}

.bank-table td {
    padding: 8px;
    text-align: center;
    border: 1px solid #ddd;
}

.section-title {
    font-family: 'Invulnerable', sans-serif;
    color: var(--electric-blue-70);
    text-align: center;
    font-weight: bold;
    margin: 1.5rem 0;
}

.qr-container {
    text-align: center;
    margin: 1.5rem 0;
}

.qr-code {
    max-width: 200px;
    margin: 0 auto;
}

.phone-number {
    font-family: 'Akaya', sans-serif;
    text-align: center;
    color: var(--hot-pink-70);
    font-size: 1.3rem;
    margin: 1rem 0;
}

.qr-instructions {
    font-family: 'Akaya', sans-serif;
    text-align: center;
    color: #666;
    font-size: 1.1rem !important;
    margin: 1rem 0;
}

.thank-you {
    font-family: 'Invulnerable', sans-serif;
    text-align: center;
    color: var(--electric-blue-70);
    font-weight: bold;
    margin: 1.5rem 0;
    font-size: 1.2rem !important
}


.modal-dialog {
    margin: 1.75rem auto;
    transition: transform 0.3s ease-out !important;
}

.copy-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.copy-icon {
    margin-left: 10px;
    color: var(--electric-blue-70);
    font-size: 1rem;
    cursor: pointer;
}

.copy-message {
    position: fixed;
    top: 0;
    right: 35%;
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .donation-modal .modal-dialog {
        max-width: 600px;
    }

    .bank-table {
        width: 80%;
        margin: 0 auto 1rem auto;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .copy-message {
        right: 47%;
    }
}