        .whatsapp-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            cursor: pointer;
        }

        .whatsapp-widget img {
            width: 35px;
            height: 35px;
        }

        .whatsapp-widget:hover {
            background-color: #128C7E;
        }

        .whatsapp-message-options {
            display: none;
            position: fixed;
            bottom: 100px;
            right: 20px;
            background-color: white;
            padding: 15px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            width: 300px;
            z-index: 999;
            opacity: 0;
            transition: all 0.3s ease-in-out;
        }

        .whatsapp-message-options.show {
            display: block;
            opacity: 1;
            transform: translateY(-10px);
        }

        .chat-container {
            width: 100%;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .profile {
            background-color: #f0e6e0;
            padding: 15px;
            display: flex;
            align-items: center;
        }

        .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }

        .profile-info h2 {
            margin: 0;
            font-size: 18px;
        }

        .profile-info p {
            margin: 5px 0 0;
            font-size: 12px;
            color: #666;
        }

        .chat-content {
            padding: 15px;
            background-color: #e5ddd5;
            min-height: 150px;
        }

        .message {
            background-color: white;
            border-radius: 10px;
            padding: 10px;
            margin-bottom: 10px;
            max-width: 80%;
        }

        .message p {
            margin: 0;
            font-size: 14px;
        }

        .message .time {
            font-size: 11px;
            color: #999;
            text-align: right;
            margin-top: 5px;
        }

        .start-chat {
            background-color: #25D366;
            color: white;
            border: none;
            width: 100%;
            padding: 15px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
        }

        .selectOption {
            background-color: #005246;
            color: white;
            border: none;
            border-radius: 10px;
            margin: 1px;
            padding: 10px;
            font-size: 12px;
            text-align: left;
            cursor: pointer;
        }

        .close-btn {
            margin-top: 5px;
            background-color: #005246;
            color: white;
            padding: 5px;
            border: 1px solid #007d46;
            border-radius: 10px;
            cursor: pointer;
            width: 50%;
        }