/* WhatsApp chat widget styles */
#whatsapp-chat {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 1001;
    display: none;
}

#whatsapp-chat.show {
    display: block;
}

.header-chat {
    background: #075e54;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
}

.start-chat {
    padding: 20px;
    background: #e5ddd5;
}

.blanter-msg {
    display: flex;
    padding: 10px;
    background: #f0f0f0;
}

#chat-input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
}

#send-it {
    background: #075e54;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}