#bss-chat-widget {
	position: fixed;
	bottom: 24px;
	left: 24px;
	z-index: 99999;
	font-family: Tahoma, Arial, sans-serif;
}

#bss-chat-toggle {
	min-width: 120px;
	height: auto;
	padding: 12px 18px;
	border-radius: 28px;
	background: linear-gradient(135deg, #00a884 0%, #008f6f 100%);
	border: none;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 168, 132, 0.45);
}

.bss-chat-toggle-label {
	white-space: nowrap;
}

#bss-chat-panel {
	position: absolute;
	bottom: 70px;
	left: 0;
	width: 320px;
	height: 400px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,.15);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.bss-hidden { display: none !important; }

.bss-chat-header {
	background: #00a884;
	color: #fff;
	padding: 14px 16px;
	font-weight: 600;
}

#bss-chat-messages {
	flex: 1;
	overflow-y: auto;
	padding: 12px;
}

.bss-chat-msg {
	margin-bottom: 8px;
	padding: 8px 12px;
	border-radius: 8px;
	max-width: 85%;
	font-size: 13px;
}

.bss-chat-msg.guest { background: #f0f0f0; margin-left: auto; }
.bss-chat-msg.admin { background: #e8f5e9; }

.bss-chat-input-wrap {
	display: flex;
	padding: 10px;
	border-top: 1px solid #eee;
	gap: 8px;
}

#bss-chat-input {
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 8px 12px;
}

#bss-chat-send {
	background: #00a884;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 8px 14px;
	cursor: pointer;
}
