.floating-donate-btn-4966 {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #1B3C5B; /* Primary Blue from globals */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-donate-btn-4966:hover {
    background-color: #FFA415; /* Orange from globals */
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .floating-donate-btn-4966 {
        bottom: 15px;
        left: 15px;
        padding: 12px 24px;
        font-size: 16px;
    }
}
