﻿.whatsapp-float {
    position: fixed; /* Sayfada sabit durmasını sağlar */
    width: 60px;
    height: 60px;
    bottom: 40px; /* Alttan ne kadar yukarıda olacağı */
    right: 40px; /* Sağdan ne kadar içeride olacağı */
    background-color: #25d366; /* WhatsApp yeşili */
    color: #FFF;
    border-radius: 50%; /* Yuvarlak olması için */
    text-align: center;
    font-size: 30px; /* İkon boyutu */
    box-shadow: 2px 2px 3px #999; /* Hafif gölge */
    z-index: 1000; /* Diğer öğelerin (footer vb.) üstünde kalması için */
    transition: all 0.3s ease; /* Hover efekti için yumuşak geçiş */
    /* Dikey ortalama için flex yapısı */
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Fare üzerine gelince (Hover) efekti */
    .whatsapp-float:hover {
        background-color: #128c7e; /* Biraz daha koyu yeşil */
        color: #fff;
        transform: scale(1.1); /* %10 büyütür */
    }

/* Mobilde biraz daha köşeye yanaşsın isterseniz */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
