/* WhatsApp butonu (Her cihazda görünsün) */
#wpchatt-whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* WhatsApp yeşili */
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex; /* Her cihazda görünsün */
    align-items: center;
    z-index: 1000;
}

#wpchatt-whatsapp-button a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

#wpchatt-whatsapp-button img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Hemen Ara butonu (Sadece mobilde görünsün) */
#wpchatt-call-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #007bff; /* Mavi renk */
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none; /* Defaultta gizli */
    align-items: center;
    z-index: 1000;
}

#wpchatt-call-button a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

#wpchatt-call-button img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Mobil Ekranlarda Hemen Ara butonunu göstermek */
@media only screen and (max-width: 768px) {
    #wpchatt-whatsapp-button {
        display: flex; /* WhatsApp butonunu her cihazda göster */
    }

    #wpchatt-call-button {
        display: flex; /* Hemen Ara butonunu sadece mobilde göster */
    }
}