/* WhatsApp Butonu */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* En üstte kalması için yüksek z-index */
}

#whatsapp-button i {
    font-size: 30px;
    color: white;
}

/* Arama Butonu */
#call-button {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Arama butonu sol alt köşede */
    background-color: #34b7f1;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* En üstte kalması için yüksek z-index */
}

#call-button i {
    font-size: 30px;
    color: white;
}

/* Sohbet Penceresi */
#whatsapp-chatbox {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* Sohbet penceresi de üstte kalır */
    font-family: Arial, sans-serif;
}

#whatsapp-chatbox .header {
    display: flex;
    align-items: center;
    background-color: #25D366;
    padding: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: white;
}

#whatsapp-chatbox .header img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

#whatsapp-chatbox .header h3 {
    margin: 0;
    font-size: 16px;
}

#whatsapp-chatbox .content {
    padding: 15px;
}

#whatsapp-chatbox label {
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

#whatsapp-chatbox textarea {
    width: 100%;
    height: 60px;
    resize: none;
    padding: 10px;
    margin-top: 8px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 14px;
}

#send-button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
}
