.site-chat, .site-chat .container, .site-chat .row, .site-chat .col {
    height: 0;
    position: fixed;
    top: auto;
    bottom: 12rem;
		width: 100%;
		z-index: 2;
}

#chat-toggle {
    	position: absolute;
    	right: 4rem;
    	background: #007bff;
    	color: white;
    	border: none;
    	border-radius: 50%;
    	width: 50px;
    	height: 50px;
    	cursor: pointer;
    	font-size: 22px;
    	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }

		#chatbot {
    	position: fixed;
    	bottom: 12rem;
    	right: 4rem;
    	width: 320px;
    	background: #fff;
    	border: 1px solid #ccc;
    	border-radius: 10px;
    	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    	font-family: Arial, sans-serif;
    	display: none;
    }

    #chat-header {
    	background: #007bff;
    	color: white;
    	padding: 10px;
    	border-radius: 10px 10px 0 0;
    	display: flex;
    	justify-content: space-between;
    	align-items: center;
    }

    #chat-header span {
    	cursor: pointer;
    	font-weight: bold;
    	font-size: 16px;
    }

    #chat-body {
    	padding: 15px;
    	max-height: 350px;
    	overflow-y: auto;
    }

		#chatbot p {
			margin: 1rem 0;
		}

    #chatbot .btn {
    	display: block;
    	width: 100%;
    	margin: 5px 0;
    	padding: 10px;
    	background: #f1f1f1;
    	border: none;
    	border-radius: 5px;
    	cursor: pointer;
    	text-align: left;
			font-size: 1.2rem;
    }

		#chatbot .btn-send {
				background-color: #008000;
				color: #fff;
				font-weight: 700;
		}

    #chatbot .btn:hover {
    	background: #ddd;
    }

		#chatbot .btn-send:hover {
				background-color: #008000;
				color: #fff;
				font-weight: 700;
				opacity: .75;;
		}

    #chatbot input,
    #chatbot textarea {
    	width: 100%;
    	padding: 8px;
    	margin: 5px 0;
    	border: 1px solid #ccc;
    	border-radius: 5px;
    }

