/* Styles for Modal */
.bank-transfer-modal {
    text-align: center;
    font-size: 16px;
}

.modal-header {
    margin-bottom: 20px;
}

.modal-intro {
    margin-bottom: 20px;
    color: #555;
}

.bank-details p {
    margin: 10px 0;
    line-height: 1.6;
}

.bank-details .note {
    font-style: italic;
    color: #666;
    margin-top: 15px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 70%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        padding: 20px;
    }
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1002; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; /* 10% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Adjust as per your design */
    max-width: 500px; /* Max width for the modal */
    border-radius: 8px;
    position: relative;
}

.modal-header, .modal-footer {
    padding: 10px 20px;
}

.modal-header {
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    font-size: 1.2em;
    color: #333;
}

.modal-body {
    padding: 20px;
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

.modal-highlight {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.modal-icon {
    color: #007bff;
    margin-right: 10px;
    font-size: 1.5em;
}

.modal-list {
    list-style-type: none;
    padding-left: 20px;
}

.modal-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.modal-note {
    margin-top: 20px;
    font-style: italic;
    color: #6c757d;
}

.donate-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
    margin-top: 20px;
}

.donate-button:hover {
    background-color: #007bff;
}

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

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

/* Additional styles for modal can be added below */
