/* ============================================================
   ПЕРЕМЕННЫЕ ТЕМ
   ============================================================ */
:root {
	--bg-app: #e9ecf3;
	--bg-panel: #ffffff;
	--bg-sidebar: #f7f8fb;
	--bg-chat: #f8f9fa;
	--bg-input: #ffffff;
	--bg-header: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--bg-bot-msg: #ffffff;
	--bg-user-msg: #667eea;
	--bg-hover: #eef0f6;
	--bg-active: #667eea;

	--text-main: #111111;
	--text-muted: #6b7280;
	--text-user-msg: #ffffff;
	--text-bot-msg: #111111;

	--border-color: #e5e7eb;
	--border-input: #e5e7eb;

	--btn-primary: #667eea;
	--btn-primary-active: #5a67d8;
	--btn-primary-shadow: rgba(102, 126, 234, 0.3);

	--btn-danger: #ef4444;
	--btn-danger-active: #dc2626;
	--btn-danger-shadow: rgba(239, 68, 68, 0.3);

	--shadow-app: 0 10px 40px rgba(0, 0, 0, 0.15);
	--shadow-msg: 0 2px 8px rgba(0, 0, 0, 0.06);
	--shadow-sidebar: 4px 0 20px rgba(0, 0, 0, 0.2);

	--modal-backdrop: rgba(20, 20, 40, 0.55);
	--scrollbar-thumb: #c8cde0;
	--scrollbar-track: transparent;

	--tag-bg: #eef0fa;
	--tag-border: #d6dcf3;
	--tag-text: #3a4aa8;
}

html[data-theme='dark'] {
	--bg-app: #0f1117;
	--bg-panel: #1a1d27;
	--bg-sidebar: #14161e;
	--bg-chat: #0f1117;
	--bg-input: #1a1d27;
	--bg-header: linear-gradient(135deg, #4a3a8f 0%, #5c3878 100%);
	--bg-bot-msg: #1e2130;
	--bg-user-msg: #4a5bd4;
	--bg-hover: #22263a;
	--bg-active: #4a5bd4;

	--text-main: #e8eaf0;
	--text-muted: #8b90a3;
	--text-user-msg: #ffffff;
	--text-bot-msg: #e8eaf0;

	--border-color: #2a2e42;
	--border-input: #2a2e42;

	--btn-primary: #4a5bd4;
	--btn-primary-active: #3d4cc0;
	--btn-primary-shadow: rgba(74, 91, 212, 0.35);

	--btn-danger: #d63b3b;
	--btn-danger-active: #b83030;
	--btn-danger-shadow: rgba(214, 59, 59, 0.35);

	--shadow-app: 0 10px 40px rgba(0, 0, 0, 0.6);
	--shadow-msg: 0 2px 8px rgba(0, 0, 0, 0.3);
	--shadow-sidebar: 4px 0 20px rgba(0, 0, 0, 0.5);

	--modal-backdrop: rgba(0, 0, 0, 0.75);
	--scrollbar-thumb: #2f3550;
	--scrollbar-track: transparent;

	--tag-bg: rgba(74, 91, 212, 0.18);
	--tag-border: rgba(74, 91, 212, 0.45);
	--tag-text: #aab4ff;
}

/* ============================================================
   БАЗА
   ============================================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family:
		-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--bg-app);
	color: var(--text-main);
	height: 100vh;
	overflow: hidden;
	transition:
		background 0.25s,
		color 0.25s;
}

::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
::-webkit-scrollbar-track {
	background: var(--scrollbar-track);
}
::-webkit-scrollbar-thumb {
	background: var(--scrollbar-thumb);
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--text-muted);
}

/* ============== ОБЩИЙ КАРКАС ============== */
#app {
	display: flex;
	max-width: 1400px;
	height: calc(100vh - 32px);
	margin: 16px auto;
	background: var(--bg-panel);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-app);
	transition: background 0.25s;
}

/* ============== САЙДБАР ============== */
#sidebar {
	width: 280px;
	flex-shrink: 0;
	background: var(--bg-sidebar);
	border-right: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
	transition:
		background 0.25s,
		border-color 0.25s;
}

.sidebar-header {
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--border-color);
	background: var(--bg-header);
	color: white;
}
.sidebar-header h2 {
	font-size: 16px;
	font-weight: 600;
}
#new-chat-btn {
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	color: white;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.2s,
		transform 0.2s;
}
#new-chat-btn:hover {
	background: rgba(255, 255, 255, 0.4);
}
#new-chat-btn:active {
	transform: scale(0.9);
}

#threads-list {
	flex: 1;
	overflow-y: auto;
	padding: 8px;
}

.thread-item {
	position: relative;
	padding: 12px 40px 12px 12px;
	border-radius: 10px;
	cursor: pointer;
	margin-bottom: 4px;
	transition: background 0.15s;
}
.thread-item:hover {
	background: var(--bg-hover);
}
.thread-item.active {
	background: var(--bg-active);
	color: white;
}

.thread-title {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.thread-last {
	font-size: 12px;
	color: var(--text-muted);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 2px;
}
.thread-item.active .thread-last {
	color: rgba(255, 255, 255, 0.8);
}

.thread-delete {
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: #9ca3af;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	opacity: 0;
	transition:
		opacity 0.15s,
		background 0.15s,
		color 0.15s;
}
.thread-item:hover .thread-delete {
	opacity: 1;
}
.thread-delete:hover {
	background: #ef4444;
	color: white;
}
.thread-item.active .thread-delete {
	color: rgba(255, 255, 255, 0.8);
}

/* ============== ОСНОВНАЯ ЧАСТЬ ============== */
#main {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-width: 0;
}

header {
	background: var(--bg-header);
	color: white;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
	transition: background 0.25s;
}
header h1 {
	font-size: 18px;
	font-weight: 600;
	flex: 1;
}
header .badge {
	background: rgba(255, 255, 255, 0.2);
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
}
#burger-btn {
	display: none;
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	font-size: 18px;
	cursor: pointer;
}
#restart-btn {
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		transform 0.2s,
		background 0.2s;
}
#restart-btn:hover {
	background: rgba(255, 255, 255, 0.35);
}
#restart-btn:active {
	transform: scale(0.9) rotate(-90deg);
}

#theme-toggle {
	width: 36px;
	height: 36px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		transform 0.25s,
		background 0.2s;
}
#theme-toggle:hover {
	background: rgba(255, 255, 255, 0.35);
}
#theme-toggle:active {
	transform: rotate(20deg) scale(0.9);
}

#chat-container {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--bg-chat);
	transition: background 0.25s;
}

#messages {
	flex: 1;
	overflow-y: auto;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.message {
	max-width: 75%;
	padding: 12px 16px;
	border-radius: 18px;
	word-wrap: break-word;
	animation: slideIn 0.3s ease;
	font-size: 14px;
	line-height: 1.5;
}
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.message.bot {
	background: var(--bg-bot-msg);
	color: var(--text-bot-msg);
	align-self: flex-start;
	border-bottom-left-radius: 4px;
	box-shadow: var(--shadow-msg);
}
.message.user {
	background: var(--bg-user-msg);
	color: var(--text-user-msg);
	align-self: flex-end;
	border-bottom-right-radius: 4px;
}
.message img {
	max-width: 100%;
	border-radius: 12px;
	margin: 8px 0;
}
.message audio {
	width: 100%;
	margin: 8px 0;
	border-radius: 8px;
}
.message p {
	margin: 6px 0;
}
.message h2,
.message h3 {
	margin: 8px 0 4px;
}
.message.bot a {
	color: var(--btn-primary);
	text-decoration: underline;
}
.message.bot ul,
.message.bot ol {
	padding-left: 20px;
	margin: 6px 0;
}

#buttons-container {
	padding: 8px 16px 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	background: var(--bg-panel);
	border-top: 1px solid var(--border-color);
	flex-shrink: 0;
	transition:
		background 0.25s,
		border-color 0.25s;
}
.btn-bot {
	background: var(--btn-primary);
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 25px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s;
	flex: 1 1 auto;
	min-width: 80px;
	font-weight: 500;
	box-shadow: 0 2px 8px var(--btn-primary-shadow);
}
.btn-bot:active {
	transform: scale(0.95);
	background: var(--btn-primary-active);
}
.btn-bot.style-primary {
	background: var(--btn-primary);
	box-shadow: 0 2px 8px var(--btn-primary-shadow);
}
.btn-bot.style-primary:active {
	background: var(--btn-primary-active);
}
.btn-bot.style-danger {
	background: var(--btn-danger);
	box-shadow: 0 2px 8px var(--btn-danger-shadow);
}
.btn-bot.style-danger:active {
	background: var(--btn-danger-active);
}

#input-area {
	display: flex;
	gap: 10px;
	padding: 12px 16px;
	background: var(--bg-panel);
	border-top: 1px solid var(--border-color);
	flex-shrink: 0;
	transition:
		background 0.25s,
		border-color 0.25s;
}
#user-input {
	flex: 1;
	padding: 10px 16px;
	border: 2px solid var(--border-input);
	border-radius: 25px;
	font-size: 14px;
	outline: none;
	transition:
		border-color 0.2s,
		background 0.25s,
		color 0.25s;
	background: var(--bg-input);
	color: var(--text-main);
}
#user-input:focus {
	border-color: var(--btn-primary);
}
#send-btn {
	width: 44px;
	height: 44px;
	border: none;
	background: var(--btn-primary);
	color: white;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.2s;
	flex-shrink: 0;
}
#send-btn:active {
	transform: scale(0.9);
}

/* ============== МОБИЛЬНАЯ ВЕРСИЯ ============== */
@media (max-width: 768px) {
	#app {
		max-width: 100%;
		height: 100dvh;
		margin: 0;
		border-radius: 0;
	}
	#sidebar {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 80%;
		max-width: 320px;
		z-index: 100;
		transform: translateX(-100%);
		transition: transform 0.25s ease;
		box-shadow: var(--shadow-sidebar);
	}
	#sidebar.open {
		transform: translateX(0);
	}
	#burger-btn {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	header h1 {
		font-size: 16px;
	}
	.badge {
		display: none;
	}
	.message {
		max-width: 90%;
		font-size: 14px;
		padding: 10px 14px;
	}
	.btn-bot {
		font-size: 13px;
		padding: 8px 16px;
		min-width: 60px;
	}
}

.thread-rename-input {
	width: 100%;
	padding: 4px 6px;
	border: 2px solid var(--btn-primary);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	outline: none;
	background: var(--bg-input);
	color: var(--text-main);
	font-family: inherit;
}

/* ============== ТЕГИ ============== */
.thread-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 4px;
}
.thread-tag {
	display: inline-block;
	padding: 1px 8px;
	border-radius: 999px;
	background: var(--tag-bg);
	border: 1px solid var(--tag-border);
	color: var(--tag-text);
	font-size: 10.5px;
	font-family: ui-monospace, Consolas, monospace;
	white-space: nowrap;
	line-height: 1.4;
	margin-right: 4px;
}
.thread-item.active .thread-tag {
	opacity: 0.9;
}

.tag-row input[type='text'] {
	outline: none;
}
.tag-row input[type='text']:focus {
	border-color: var(--btn-primary);
}

/* ============== МОДАЛЬНОЕ ОКНО (инструкции) ============== */
.info-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.2s;
}
.info-modal.open {
	opacity: 1;
}
.info-modal-backdrop {
	position: absolute;
	inset: 0;
	background: var(--modal-backdrop);
	backdrop-filter: blur(2px);
}
.info-modal-box {
	position: relative;
	background: var(--bg-panel);
	color: var(--text-main);
	border-radius: 14px;
	width: 90vw;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	transform: translateY(20px) scale(0.98);
	transition:
		transform 0.25s,
		background 0.25s,
		color 0.25s;
}
.info-modal.open .info-modal-box {
	transform: none;
}
.info-modal-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 20px;
	border-bottom: 1px solid var(--border-color);
}
.info-modal-head h3 {
	font-size: 17px;
	margin: 0;
	color: var(--text-main);
}
.info-modal-close {
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	background: var(--bg-hover);
	color: var(--text-muted);
	font-size: 16px;
	cursor: pointer;
	line-height: 1;
}
.info-modal-close:hover {
	background: var(--border-color);
}
.info-modal-body {
	padding: 20px;
	overflow-y: auto;
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-main);
}
.info-modal-body img,
.info-modal-body video {
	max-width: 100%;
	border-radius: 10px;
	height: auto;
}
.info-modal-body audio {
	width: 100%;
	margin: 8px 0;
}
.info-modal-body h1 {
	font-size: 20px;
	margin: 12px 0 8px;
}
.info-modal-body h2 {
	font-size: 17px;
	margin: 12px 0 6px;
}
.info-modal-body h3 {
	font-size: 15px;
	margin: 10px 0 4px;
}
.info-modal-body p {
	margin: 8px 0;
}
.info-modal-body ul,
.info-modal-body ol {
	padding-left: 22px;
	margin: 8px 0;
}
.info-modal-body code {
	background: var(--bg-hover);
	padding: 1px 6px;
	border-radius: 4px;
	font-family: ui-monospace, Consolas, monospace;
	font-size: 0.92em;
}
.info-modal-body pre {
	background: var(--bg-hover);
	padding: 10px 12px;
	border-radius: 8px;
	overflow-x: auto;
	font-size: 13px;
}
.info-modal-body table {
	border-collapse: collapse;
	margin: 10px 0;
	width: 100%;
}
.info-modal-body td,
.info-modal-body th {
	border: 1px solid var(--border-color);
	padding: 6px 10px;
	text-align: left;
}
.info-modal-body a {
	color: var(--btn-primary);
	text-decoration: underline;
}
.info-modal-body blockquote {
	border-left: 4px solid var(--btn-primary);
	background: var(--bg-hover);
	padding: 8px 14px;
	margin: 10px 0;
	border-radius: 6px;
	color: var(--text-main);
}
@media (max-width: 600px) {
	.info-modal-box {
		width: 95vw;
		max-height: 90vh;
	}
	.info-modal-body {
		padding: 14px;
		font-size: 14px;
	}
	.info-modal-head {
		padding: 10px 14px;
	}
	.info-modal-head h3 {
		font-size: 15px;
	}
}

.msg-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
}
.msg-btn {
	background: var(--bg-panel);
	border: 1px solid var(--border-color);
	color: var(--text-main);
	padding: 6px 12px;
	border-radius: 18px;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.15s;
}
.msg-btn:hover {
	background: var(--bg-hover);
	border-color: var(--btn-primary);
}
.msg-btn:active {
	transform: scale(0.96);
}
.message.user .msg-btn {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.4);
}

/* ============== INLINE-КНОПКИ В СООБЩЕНИЯХ ============== */
.msg-inline-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
	padding-top: 8px;
	border-top: 1px dashed var(--border-color);
}
.message.user .msg-inline-buttons {
	border-top-color: rgba(255, 255, 255, 0.25);
}

.msg-inline-btn {
	background: var(--bg-panel);
	border: 1px solid var(--border-color);
	color: var(--text-main);
	padding: 6px 14px;
	border-radius: 18px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.15s ease;
	font-family: inherit;
	line-height: 1.3;
}
.msg-inline-btn:hover:not(:disabled) {
	background: var(--bg-hover);
	border-color: var(--btn-primary);
	box-shadow: 0 2px 6px var(--btn-primary-shadow);
}
.msg-inline-btn:active:not(:disabled) {
	transform: scale(0.96);
}
.msg-inline-btn:disabled,
.msg-inline-btn.clicked {
	opacity: 0.5;
	cursor: default;
}
.msg-inline-btn.style-primary {
	background: var(--btn-primary);
	border-color: var(--btn-primary-active);
	color: #fff;
}
.msg-inline-btn.style-primary:hover:not(:disabled) {
	background: var(--btn-primary-active);
}
.msg-inline-btn.style-danger {
	background: var(--btn-danger-bg, #ffe5e5);
	border-color: var(--btn-danger);
	color: var(--btn-danger);
}
.msg-inline-btn.style-danger:hover:not(:disabled) {
	background: var(--btn-danger-hover, #ffd1d1);
}
html[data-theme='dark'] .msg-inline-btn.style-danger {
	background: #3a1e1e;
	border-color: #7a2a2a;
	color: #ff8080;
}
html[data-theme='dark'] .msg-inline-btn.style-danger:hover:not(:disabled) {
	background: #4a2828;
}

.message.user .msg-inline-btn {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}
.message.user .msg-inline-btn:hover:not(:disabled) {
	background: rgba(255, 255, 255, 0.3);
}

/* ============== DEBUG-БЛОК ============== */
.msg-debug {
	max-width: 75%;
	margin-top: -6px;
	margin-bottom: 4px;
	align-self: flex-start;
	padding: 8px 12px;
	background: var(--bg-hover);
	border-left: 3px solid var(--btn-primary);
	border-radius: 8px;
	font-size: 11.5px;
	line-height: 1.5;
	color: var(--text-main);
	font-family: ui-monospace, Consolas, monospace;
	word-break: break-word;
}
.msg-debug code {
	background: var(--bg-panel);
	padding: 1px 5px;
	border-radius: 4px;
	color: var(--text-main);
}
/* ============================================================
   АНИМАЦИИ ДЛЯ ШАБЛОНОВ СООБЩЕНИЙ
   ============================================================ */
@keyframes tplFadeIn {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes tplPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}
@keyframes tplShine {
	0% {
		background-position: -200% center;
	}
	100% {
		background-position: 200% center;
	}
}
@keyframes tplBounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}
@keyframes tplSpin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes tplGradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@keyframes tplSlideInLeft {
	from {
		opacity: 0;
		transform: translateX(-12px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes tplPop {
	0% {
		transform: scale(0.85);
		opacity: 0;
	}
	60% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Чтобы анимации не резались у сообщений бота */
.message.bot {
	animation-fill-mode: both;
}
#login-btn {
	height: 36px;
	padding: 0 14px;
	border: none;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.2);
	color: white;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		background 0.2s,
		transform 0.15s;
	white-space: nowrap;
}
#login-btn:hover {
	background: rgba(255, 255, 255, 0.35);
}
#login-btn:active {
	transform: scale(0.95);
}
#login-btn.logged-in {
	background: rgba(76, 175, 80, 0.55);
}
@media (max-width: 768px) {
	#login-btn {
		padding: 0 10px;
		font-size: 13px;
	}
}
#admin-panel-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 16px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition:
		background 0.2s,
		transform 0.15s;
}
#admin-panel-btn:hover {
	background: rgba(255, 255, 255, 0.35);
}
#admin-panel-btn:active {
	transform: scale(0.92);
}
.empty-chat {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
	color: var(--text-muted);
	animation: slideIn 0.3s ease;
}
.empty-chat-icon {
	font-size: 56px;
	line-height: 1;
	margin-bottom: 16px;
	opacity: 0.6;
}
.empty-chat-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--text-main);
	margin-bottom: 6px;
}
.empty-chat-text {
	font-size: 14px;
	max-width: 360px;
	line-height: 1.5;
}
#user-input:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	background: var(--bg-hover);
}
#send-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	box-shadow: none;
}
