.quran-floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99999;
}

.quran-call-button,
.quran-whatsapp-button {
    text-decoration: none;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.quran-call-button {
    background: #0b5ed7;
}

.quran-whatsapp-button {
    background: #25D366;
}

.quran-call-button:hover,
.quran-whatsapp-button:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}