.my-donation-bar {
    width: 100%;
    position: fixed;
    left: 0;
    z-index: 9999;
    box-sizing: border-box;
    padding: 15px;
}

.my-donation-bar-top {
    top: 0;
}

.my-donation-bar-bottom {
    bottom: 0;
}

.my-donation-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.my-donation-bar-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
}

.donation-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.donation-amount {
    background-color: #ffffff;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.donation-amount:hover {
    background-color: #007bff;
    color: #ffffff;
}

#custom-amount {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.fee-recovery {
    margin-bottom: 10px;
}

.total-amount {
    margin-bottom: 10px;
}

.donate-button {
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

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

@media (max-width: 768px) {
    .my-donation-bar {
        width: 100%;
        padding: 10px;
    }
    .my-donation-bar-content {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        gap: 15px;
    }
    .my-donation-bar-text {
        text-align: center;
        font-size: 14px;
    }
    .donation-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

/* Style for the close button */
.close-button {
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    padding: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.close-button:hover {
    color: #666;
}
