/* Voxfor Secure Live Chat Widget Dynamic Styles */
.voxfseli-send-btn {
	color: white;
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	margin-left: 8px;
}

.voxfseli-send-btn:hover {
	opacity: 0.9;
}

.voxfseli-launcher-button {
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0,0,0,0.2);
	position: relative;
}

.voxfseli-chat-launcher {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999999;
}

.voxfseli-input-field-wrapper {
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
}

.voxfseli-input-row {
	display: flex;
	align-items: flex-end;
	gap: 8px;
}

/* Chat Messages Styling */
.voxfseli-chat-messages, .voxfseli-messages-container {
	padding: 15px !important;
	height: 382px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #0296ff8f #f1f1f1;
}

.voxfseli-message {
	margin-bottom: 15px;
	display: flex;
	clear: both;
}

/* Agent Messages - Left Side */
.voxfseli-message.voxfseli-message-agent {
	justify-content: flex-start;
}

.voxfseli-agent .voxfseli-message-content {
	color: #333;
	border-radius: 18px 18px 18px 0px;
	margin: 5px !important;
	padding: 7px 10px !important;
}

.voxfseli-ai .voxfseli-message-content {
	background: #f4faf4;
	color: #333;
	border-radius: 18px 18px 18px 0px;
	margin: 5px !important;
	padding: 7px 10px !important;
}

/* User Messages - Right Side */
.voxfseli-message.voxfseli-user {
	display: flex;
	align-items: flex-end;
}

.voxfseli-user .voxfseli-message-content {
	color: #333;
	border-radius: 18px 18px 0px 18px;
	margin: 5px !important;
	padding: 7px 10px !important;
}

.voxfseli-message-text {
	font-size: 14px;
	line-height: 1.4;
	word-wrap: break-word;
}

.voxfseli-message-time {
	font-size: 11px;
	opacity: 0.7;
	margin-top: 4px !important;
}

/* Welcome Message Styling */
.voxfseli-welcome-message .voxfseli-message {
	justify-content: flex-start;
}

.voxfseli-welcome-message .voxfseli-message-content {
	background: #e8f5e8;
	color: #2d5d2d;
	border: 1px solid #c3e6c3;
}

/* System Message Styling */
.voxfseli-message.voxfseli-system {
	justify-content: center;
	margin: 10px 0;
}

.voxfseli-system .voxfseli-message-content {
	background: #fff3cd;
	border-radius: 12px;
	padding: 8px 12px !important;
	font-size: 13px;
	text-align: center;
	max-width: 80%;
}

/* File Attachment Button Styling */
.voxfseli-action-btn, .voxfseli-attach-btn {
	border: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: white;
	padding: 0;
	min-width: 30px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.voxfseli-action-btn:hover, .voxfseli-attach-btn:hover {
	background: #0d8fd1;
	opacity: 0.8;
	transform: scale(1.05);
	color: #fff;
}

.voxfseli-action-btn svg, .voxfseli-attach-btn svg {
	width: 18px;
	height: 18px;
}

/* Emoji Picker Styles */
.voxfseli-emoji-picker {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	max-height: 320px;
	margin-bottom: 8px;
	overflow: hidden;
	display: none;
}

.voxfseli-emoji-picker-header {
	padding: 12px;
	border-bottom: 1px solid #e9ecef;
	background: #f8f9fa;
}

.voxfseli-emoji-search {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	font-size: 14px;
	outline: none;
	transition: all 0.3s ease;
}

.voxfseli-emoji-picker-categories {
	display: flex;
	padding: 8px 12px;
	border-bottom: 1px solid #e9ecef;
	background: #f8f9fa;
	gap: 4px;
}

.voxfseli-emoji-category-btn {
	background: none;
	border: none;
	padding: 8px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 18px;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.voxfseli-emoji-category-btn:hover {
	background: rgba(0, 124, 186, 0.1);
}

.voxfseli-emoji-picker-content {
	max-height: 200px;
	overflow-y: auto;
	padding: 8px;
}

.voxfseli-emoji-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 4px;
}

.voxfseli-emoji-item {
	padding: 8px;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 20px;
	text-align: center;
	user-select: none;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
}

.voxfseli-emoji-item:hover {
	background: rgba(0, 124, 186, 0.1);
	transform: scale(1.1);
}

.voxfseli-emoji-btn {
	position: absolute;
	bottom: 12px;
	right: 8px;
	z-index: 999;
	color: #fff;
	border-radius: 50%;
	transition: all 0.3s ease;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.voxfseli-emoji-btn:hover {
	background: #0d8fd1;
	color: #f7f7f7;
	border-color: #007cba;
}

.voxfseli-emoji-btn svg {
	width: 20px;
	height: 20px;
} 