.button-primary{
	background-color: #007aff;
}

.button-primary:hover{
	background-color: #0052cc;
}

#chatbot-icon {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}

#chatbot-icon i {
	font-size: 32px;
	color: #fff;
}

#chat-container {
	position: fixed;
	display:  none;
	bottom: 20px;
	right: 20px;
	width: 350px;
	/*height: 400px;*/
	background-color: #ffffff;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	font-family: Arial, sans-serif;
	z-index: 1000;
}

#chat-header {
	background-color: #f1f1f1;
	border-bottom: 1px solid #dcdcdc;
	padding: 5px;
	border-radius: 5px 5px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#chat-header h3 {
	margin: 0;
	font-size: 18px;
	font-weight: bold;
	color: #333333;
}

#chat-close {
	background-color: transparent;
	border: none;
	font-size: 24px;
	color: #666666;
	cursor: pointer;
	outline: none;
}

#chat-close:hover {
	color: #333333;
}

#chat-body {
	height: 300px;
	overflow-y: scroll;
	padding: 10px;
	background-color: #f8f8f8;
	border-radius: 0 0 5px 5px;
}

#chat-messages {
	list-style: none;
	margin: 0;
	padding: 0;
}

#chat-messages li {
	margin-bottom: 5px;
}

#chat-messages .message-agent {
	font-weight: bold;
	color: #333333;
}

#chat-messages .message-user {
	color: #999999;
	margin-left: 5px;
}

#chat-footer {
	padding: 10px;
	border-top: 1px solid #dcdcdc;
	border-radius: 0 0 5px 5px;
	display: flex;
	align-items: center;
}

#chat-input {
	flex: 1;
	padding: 10px;
	border: none;
	border-radius: 5px;
	background-color: #f1f1f1;
	margin-right: 10px;
	font-size: 14px;
	color: #333333;
}

#chat-input:focus {
	outline: none;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#chat-send {
	color: #ffffff;
	border: none;
	border-radius: 5px;
	padding: 10px 10px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

@media (max-width: 767px) {
	#chat-container {
		width: 100%;
		border-radius: 0;
		bottom: 0;
		left: 0;
		height: 100%;
	}

	#chat-header {
		border-radius: 0;
	}

	#chat-body {
		height: calc(100% - 110px);
		border-radius: 0;
	}
}
#send-ticket {
	border: none;
	color: white;
	padding: 10px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 5px;
}

/* Style for the loading spinner */
#loading {
	display: none;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	text-align: center;
}
#loading img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
