﻿/* WhatsApp Widget Styling */
#whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

    #whatsapp-widget .widget-toggle {
        width: 60px;
        height: 60px;
        background-color: #25D366;
        border-radius: 50%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.3s;
    }

        #whatsapp-widget .widget-toggle:hover {
            transform: scale(1.1);
        }

        #whatsapp-widget .widget-toggle .whatsapp-icon {
            width: 30px;
            height: 30px;
        }

    #whatsapp-widget .widget-chat {
        position: absolute;
        bottom: 70px;
        right: 0;
        width: 300px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        overflow: hidden;
    }

        #whatsapp-widget .widget-chat header {
            background-color: #25D366;
            color: #fff;
            padding: 15px;
            border-radius: 10px 10px 0 0;
            text-align: center;
        }

            #whatsapp-widget .widget-chat header h4 {
                margin: 0;
                font-size: 16px;
            }

            #whatsapp-widget .widget-chat header p {
                margin: 5px 0 0;
                font-size: 12px;
            }

        #whatsapp-widget .widget-chat .chat-body {
            padding: 15px;
            font-size: 14px;
            line-height: 1.6;
        }

        #whatsapp-widget .widget-chat footer {
            padding: 10px;
            text-align: center;
            background: #f1f1f1;
        }

            #whatsapp-widget .widget-chat footer button {
                background-color: #25D366;
                color: white;
                border: none;
                border-radius: 5px;
                padding: 10px 20px;
                font-size: 14px;
                cursor: pointer;
            }

                #whatsapp-widget .widget-chat footer button:hover {
                    background-color: #1EBB63;
                }
