.whatsapp-float {
    position: fixed; /* Sayfa kaydırmasından etkilenmemesini sağlar */
    width: 60px;
    height: 60px;
    bottom: 40px; /* Alttan 40px boşluk */
    right: 40px; /* Sağdan 40px boşluk */
    background-color: #25D366; /* WhatsApp yeşili */
    color: #FFF;
    border-radius: 50px; /* Yuvarlak buton */
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; /* Diğer öğelerin üzerinde görünmesini sağlar (Yüksek z-index) */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.whatsapp-float:hover {
    background-color: #1DA851; /* Hover rengi */
}

.whatsapp-icon {
    margin-top: 0; /* İçindeki iconu ortalamak için */
}

/* Küçük ekranlar için boyutu küçültme (Opsiyonel) */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}