
        /* Chat Widget Styling */
        #chat-widget-container {
            position: relative;
            /* Centered horizontally and vertically */
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            /* 50% width of the screen */
            width: 80%;
            height: 400px; /* Keeping original height */
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
           
            overflow: hidden;
        }
        #chat-widget-header {
            background: #F74780;
            color: white;
            padding: 20px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
        }
        #chat-widget-body {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
        }
        /* Increased spacing between messages */
        #chat-widget-body p {
            margin-bottom: 15px; /* Adjust spacing between messages */
            padding: 12px;
            border-radius: 8px;
            font-size: 14px;
            word-wrap: break-word;
        }
        #chat-widget-footer {
            padding: 12px;
            border-top: 1px solid #ddd;
            display: flex;
            gap: 10px;
        }
        #chat-widget-input {
            flex: 1;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 8px;
            outline: none;
        }
        #chat-widget-send {
            background: #F74780;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
        }
