#chat-button-container {
            position: fixed;
            bottom: 20px;
            right: 20px;
	    z-index:999;
}
#chat-button, #close-button {
            background-color: #4fb0e8;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            font-size: 16px;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s;
}
#chat-button:hover, #close-button:hover {
            background-color: #4097cc;
}
#chat-button svg, #close-button svg {
            margin-right: 10px;
}
#close-button svg {
            margin: 0;
}
#pre-chat-form {
            position: fixed;
            bottom: 100px;
            right: 20px;
            background-color: white;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            display: none;
            font-family: Helvetica;
            text-align: left;
            font-size: 14px;
	    z-index:999;
}
#pre-chat-form h3 {
            background-color: #4fb0e8;
            color: white;
            padding: 10px;
            border-radius: 20px 20px 0 0;
            margin: -20px -20px 20px -20px;
}
#pre-chat-form button {
            padding: 10px;
            border-radius: 20px;
            width: 100%;
            background-color: #62d286;
            color: white;
            border: none;
            font-size: 16px;
            cursor: pointer;
}