/* ============================================================
   Web+SEO — Hoja de estilos (admin + site)
   Rediseño 2026-08-12: paleta azul→violeta (marca), dark mode
   Atum (J5/J6), iconos SVG, sin dependencia de Icomoon.
   ============================================================ */

:root {
	--wseo-blue: #2563eb;
	--wseo-violet: #7c3aed;
	--wseo-cyan: #06b6d4;
	--wseo-green: #10b981;
	--wseo-amber: #f59e0b;
	--wseo-red: #ef4444;
	--wseo-slate: #0f172a;
	--wseo-slate-soft: #334155;
	--wseo-bg-soft: #f4f6fb;
	--wseo-bg-card: #ffffff;
	--wseo-border: #e2e8f0;
	--wseo-text: #1e293b;
	--wseo-text-muted: #64748b;
	--wseo-grad: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
	--wseo-grad-cyan: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
	--wseo-grad-green: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
	--wseo-grad-amber: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
	--wseo-shadow: 0 4px 18px rgba(37, 99, 235, 0.08);
	--wseo-shadow-lg: 0 10px 34px rgba(37, 99, 235, 0.14);
	--wseo-radius: 0.65rem;
}

/* Dark mode: Atum J5 (prefers-color-scheme) y J6 (data-bs-theme) */
[data-bs-theme="dark"],
html[data-bs-theme="dark"] body.atum,
body.atum:has(html[data-bs-theme="dark"]) {
	--wseo-bg-soft: #0f172a;
	--wseo-bg-card: #1e293b;
	--wseo-border: #334155;
	--wseo-text: #e2e8f0;
	--wseo-text-muted: #94a3b8;
	--wseo-slate: #e2e8f0;
	--wseo-slate-soft: #94a3b8;
	--wseo-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
	--wseo-shadow-lg: 0 10px 34px rgba(0, 0, 0, 0.5);
}

/* ---------- Título de página (toolbar Atum) ---------- */

/* Los iconos Icomoon (icon-globe, icon-shield...) no existen en J6;
   nuestro CSS solo se carga en vistas de com_webplusseo, así que
   reemplazamos el glifo del título por el badge de marca Web+SEO. */
.container-title .page-title > span[class^="icon-"] {
	align-items: center;
	background: var(--wseo-grad);
	border-radius: 0.35rem;
	color: transparent;
	display: inline-flex;
	height: 1.65rem;
	justify-content: center;
	margin-right: 0.6rem;
	vertical-align: middle;
	width: 1.65rem;
}

.container-title .page-title > span[class^="icon-"]::before {
	color: #fff;
	content: "W";
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1;
}

/* ---------- Acceso rápido (dashboard) ---------- */

.com-webseo-quicknav {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 0.6rem;
	margin-bottom: 1.25rem;
}

.com-webseo-quicknav__item {
	align-items: center;
	background: var(--wseo-bg-card);
	border: 1px solid var(--wseo-border);
	border-radius: 0.55rem;
	box-shadow: var(--wseo-shadow);
	color: var(--wseo-slate);
	display: flex;
	flex-direction: column;
	font-size: 0.82rem;
	font-weight: 600;
	gap: 0.4rem;
	justify-content: center;
	padding: 0.7rem 0.5rem;
	text-align: center;
	text-decoration: none;
	transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.com-webseo-quicknav__item svg {
	color: var(--wseo-blue);
}

.com-webseo-quicknav__item:hover,
.com-webseo-quicknav__item:focus {
	border-color: var(--wseo-violet);
	box-shadow: var(--wseo-shadow-lg);
	color: var(--wseo-slate);
	text-decoration: none;
	transform: translateY(-2px);
}

.com-webseo-quicknav__item:hover svg {
	color: var(--wseo-violet);
}

/* ---------- Auditoría IA ---------- */

.com-webseo-audit .card {
	background: var(--wseo-bg-card);
	border: 1px solid var(--wseo-border);
	border-radius: var(--wseo-radius);
	box-shadow: var(--wseo-shadow);
}

.com-webseo-audit .card-title {
	color: var(--wseo-slate);
	font-weight: 700;
}

.com-webseo-audit table td {
	vertical-align: top;
}

.com-webseo-audit .js-audit-result ul {
	padding-left: 1rem;
}

/* ---------- Dashboard ---------- */

.com-webseo-dashboard {
	background: var(--wseo-bg-soft);
	border: 1px solid var(--wseo-border);
	border-radius: var(--wseo-radius);
	padding: 1.25rem;
}

.com-webseo-dashboard .com-webseo-card {
	background: var(--wseo-bg-card);
	border: 1px solid var(--wseo-border);
	border-radius: var(--wseo-radius);
	box-shadow: var(--wseo-shadow);
	color: var(--wseo-text);
	margin-bottom: 1.25rem;
	padding: 1.15rem 1.35rem;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.com-webseo-dashboard .com-webseo-card:hover {
	box-shadow: var(--wseo-shadow-lg);
}

.com-webseo-dashboard .com-webseo-card > h2 {
	border-bottom: 2px solid var(--wseo-border);
	color: var(--wseo-slate);
	font-size: 1.05rem;
	font-weight: 700;
	margin-top: 0;
	padding-bottom: 0.6rem;
	position: relative;
}

.com-webseo-dashboard .com-webseo-card > h2::after {
	background: var(--wseo-grad);
	border-radius: 2px;
	bottom: -2px;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: 56px;
}

/* Tarjetas de métricas */
.com-webseo-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 0.9rem;
	margin-bottom: 1.25rem;
}

.com-webseo-stat {
	border-radius: var(--wseo-radius);
	box-shadow: var(--wseo-shadow);
	color: #fff;
	display: flex;
	overflow: hidden;
	padding: 1.1rem 1.2rem;
	position: relative;
}

.com-webseo-stat::after {
	background: rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	content: "";
	height: 140px;
	position: absolute;
	right: -45px;
	top: -55px;
	width: 140px;
}

.com-webseo-stat--blue { background: var(--wseo-grad); }
.com-webseo-stat--violet { background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%); }
.com-webseo-stat--cyan { background: var(--wseo-grad-cyan); }
.com-webseo-stat--green { background: var(--wseo-grad-green); }

.com-webseo-stat__icon {
	align-items: center;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 0.6rem;
	display: flex;
	font-size: 1.4rem;
	height: 44px;
	justify-content: center;
	margin-right: 0.9rem;
	width: 44px;
}

.com-webseo-stat__icon svg {
	height: 22px;
	width: 22px;
}

/* Blindaje: los SVG de la extensión jamás pueden crecer más allá de su
   tamaño nominal, aunque el CSS antiguo quede cacheado o el asset no se
   actualice (regresión: SVG inline sin width en Atum J6 se expandía a
   ~300px y "ocupaba toda la pantalla"). */
.com-webseo-dashboard svg,
.com-webseo-chat svg,
.com-webseo-chat svg *,
.com-webseo-dashboard svg * {
	max-height: 22px !important;
	max-width: 22px !important;
}

.com-webseo-stat__value {
	font-size: 1.55rem;
	font-weight: 800;
	line-height: 1.15;
}

.com-webseo-stat__label {
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	opacity: 0.95;
	text-transform: uppercase;
}

/* URLs / endpoints */
.com-webseo-dashboard .com-webseo-urls {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 0.75rem;
}

.com-webseo-dashboard .com-webseo-url {
	background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
	border: 1px solid var(--wseo-border);
	border-left: 4px solid var(--wseo-blue);
	border-radius: 0.5rem;
	padding: 0.8rem 0.9rem;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.com-webseo-dashboard .com-webseo-url:hover {
	box-shadow: var(--wseo-shadow);
	transform: translateY(-2px);
}

.com-webseo-dashboard .com-webseo-url code {
	word-break: break-all;
}

.com-webseo-dashboard .com-webseo-url code a {
	color: var(--wseo-blue);
	text-decoration: none;
}

.com-webseo-dashboard .com-webseo-url code a:hover {
	text-decoration: underline;
}

.com-webseo-dashboard .com-webseo-note {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-left: 4px solid var(--wseo-amber);
	border-radius: 0.4rem;
	color: #7c2d12;
	margin-top: 0.75rem;
	padding: 0.6rem 0.8rem;
}

[data-bs-theme="dark"] .com-webseo-dashboard .com-webseo-url {
	background: linear-gradient(135deg, #1e293b 0%, #172554 100%);
}

[data-bs-theme="dark"] .com-webseo-dashboard .com-webseo-note {
	background: #451a03;
	border-color: #92400e;
	color: #fdba74;
}

/* Estado endpoints con punto de color */
.com-webseo-dot {
	border-radius: 999px;
	display: inline-block;
	height: 9px;
	margin-right: 0.35rem;
	width: 9px;
}

.com-webseo-dot--ok { background: var(--wseo-green); box-shadow: 0 0 6px rgba(16, 185, 129, 0.7); }
.com-webseo-dot--ko { background: var(--wseo-red); box-shadow: 0 0 6px rgba(239, 68, 68, 0.7); }
.com-webseo-dot--warn { background: var(--wseo-amber); box-shadow: 0 0 6px rgba(245, 158, 11, 0.7); }

/* Badges score con gradiente */
.com-webseo-score {
	border-radius: 999px;
	color: #fff;
	display: inline-block;
	font-weight: 700;
	min-width: 44px;
	padding: 0.22rem 0.7rem;
	text-align: center;
}

.com-webseo-score--high { background: var(--wseo-grad-green); }
.com-webseo-score--mid { background: var(--wseo-grad-amber); }
.com-webseo-score--low { background: linear-gradient(135deg, #ef4444 0%, #7c3aed 100%); }

/* Tablas */
.com-webseo-dashboard .table,
.com-webseo-table {
	color: var(--wseo-text);
	font-size: 0.92rem;
}

.com-webseo-dashboard .table thead th,
.com-webseo-table thead th {
	border-bottom-color: var(--wseo-border);
	color: var(--wseo-slate-soft);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.com-webseo-dashboard .table tbody tr,
.com-webseo-table tbody tr {
	transition: background 0.15s ease;
}

.com-webseo-dashboard .table tbody tr:hover,
.com-webseo-table tbody tr:hover {
	background: #f1f5ff;
}

[data-bs-theme="dark"] .com-webseo-dashboard .table tbody tr:hover,
[data-bs-theme="dark"] .com-webseo-table tbody tr:hover {
	background: #263449;
}

/* URL en badge (metainfo/analysis/spider) */
.badge.bg-secondary.bg-secondary {
	background: var(--wseo-slate-soft) !important;
	font-family: "Cascadia Code", "Consolas", monospace;
	font-size: 0.8em;
}

/* ---------- Vistas con cards (spider/tools/history/briefs/chat) ---------- */

.com-webseo-dashboard .card,
#com-webseo-spider .card,
.card.wseo-card {
	background: var(--wseo-bg-card);
	border: 1px solid var(--wseo-border);
	border-radius: var(--wseo-radius);
	box-shadow: var(--wseo-shadow);
}

.com-webseo-dashboard .card .card-title,
#com-webseo-spider .card .card-title,
.card.wseo-card .card-title {
	color: var(--wseo-slate);
	font-weight: 700;
}

/* ---------- Spider ---------- */

#com-webseo-spider .progress {
	background: #e9edf5;
	border-radius: 999px;
	overflow: hidden;
}

#com-webseo-spider .progress-bar {
	background: var(--wseo-grad-cyan);
	border-radius: 999px;
	transition: width 0.6s ease;
}

#com-webseo-spider .badge.bg-success { background: var(--wseo-grad-green) !important; }
#com-webseo-spider .badge.bg-info { background: var(--wseo-grad-cyan) !important; }

/* ---------- History (barras) ---------- */

.com-webseo-history-bar {
	background: linear-gradient(90deg, var(--wseo-blue), var(--wseo-violet));
	border-radius: 999px;
	display: inline-block;
	height: 14px;
	min-width: 2px;
}

.com-webseo-history-bar--alt {
	background: linear-gradient(90deg, var(--wseo-cyan), var(--wseo-green));
}

/* ---------- Editor .htaccess ---------- */

#htaccess-content {
	background: #0f172a;
	border: 1px solid #1e293b;
	border-radius: 0.5rem;
	color: #a5f3fc;
	font-family: "Cascadia Code", "Consolas", "Fira Code", monospace;
	font-size: 0.85rem;
	line-height: 1.5;
	tab-size: 4;
}

#htaccess-content:focus {
	border-color: var(--wseo-cyan);
	box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.18);
	outline: none;
}

/* ---------- Botones ---------- */

.btn-primary {
	background: var(--wseo-grad);
	border: 0;
	border-radius: 0.45rem;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
	box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
	transform: translateY(-1px);
}

.btn-success {
	background: var(--wseo-grad-green);
	border: 0;
	border-radius: 0.45rem;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
	background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
	box-shadow: 0 6px 18px rgba(16, 185, 129, 0.4);
	transform: translateY(-1px);
}

.btn-danger {
	background: linear-gradient(135deg, #ef4444 0%, #db2777 100%);
	border: 0;
	border-radius: 0.45rem;
}

.btn-danger:hover {
	background: linear-gradient(135deg, #dc2626 0%, #be185d 100%);
	box-shadow: 0 6px 18px rgba(239, 68, 68, 0.4);
	transform: translateY(-1px);
}

.btn-primary,
.btn-success,
.btn-danger,
.btn-outline-primary,
.btn-outline-secondary {
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* ---------- Formularios (generate/briefs/metainfo) ---------- */

.options-form {
	background: var(--wseo-bg-card);
	border: 1px solid var(--wseo-border);
	border-radius: var(--wseo-radius);
	box-shadow: var(--wseo-shadow);
	color: var(--wseo-text);
	padding: 1.25rem 1.5rem;
}

.options-form legend {
	color: var(--wseo-slate);
	font-weight: 700;
}

.options-form .form-label {
	color: var(--wseo-slate-soft);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.options-form .form-control {
	background: var(--wseo-bg-card);
	border-color: var(--wseo-border);
	color: var(--wseo-text);
}

/* ---------- Briefs ---------- */

.brief-content {
	color: var(--wseo-text);
	font-size: 0.95rem;
	line-height: 1.7;
}

.brief-content h1,
.brief-content h2,
.brief-content h3,
.brief-content h4 {
	color: var(--wseo-slate);
	margin-top: 1.2em;
}

.brief-content pre {
	background: #0f172a;
	border-radius: 0.4rem;
	color: #a5f3fc;
	padding: 0.8rem;
}

.brief-content table {
	background: var(--wseo-bg-card);
	border: 1px solid var(--wseo-border);
}

/* ---------- Chat IA ---------- */

.com-webseo-chat .card {
	background: var(--wseo-bg-card);
	border: 1px solid var(--wseo-border);
	border-radius: var(--wseo-radius);
	box-shadow: var(--wseo-shadow);
}

.com-webseo-chat .card-title {
	color: var(--wseo-slate);
	font-weight: 700;
}

/* Contenedor de conversación: panel lateral + área de mensajes */
.com-webseo-chat__panel {
	border-radius: var(--wseo-radius);
	overflow: hidden;
}

.com-webseo-chat__sidebar {
	background: var(--wseo-bg-card);
	border: 1px solid var(--wseo-border);
	border-radius: var(--wseo-radius);
	box-shadow: var(--wseo-shadow);
	height: 100%;
}

.com-webseo-chat__sidebar-header {
	background: var(--wseo-grad);
	color: #fff;
	padding: 0.85rem 1rem;
}

.com-webseo-chat__sidebar-header .h6 {
	color: #fff;
	font-weight: 700;
	margin: 0;
}

.com-webseo-chat__conversation {
	align-items: center;
	border-bottom: 1px solid var(--wseo-border);
	display: flex;
	gap: 0.6rem;
	padding: 0.55rem 0.8rem;
	transition: background 0.15s ease;
}

.com-webseo-chat__conversation:hover {
	background: var(--wseo-bg-soft);
}

.com-webseo-chat__conversation--active {
	background: linear-gradient(135deg, #eef2ff 0%, #fdf4ff 100%);
	border-left: 3px solid var(--wseo-violet);
}

[data-bs-theme="dark"] .com-webseo-chat__conversation--active {
	background: linear-gradient(135deg, #1e293b 0%, #312e81 100%);
}

.com-webseo-chat__conv-avatar {
	align-items: center;
	background: var(--wseo-grad-cyan);
	border-radius: 50%;
	color: #fff;
	display: flex;
	flex-shrink: 0;
	font-size: 0.75rem;
	font-weight: 800;
	height: 32px;
	justify-content: center;
	text-transform: uppercase;
	width: 32px;
}

.com-webseo-chat__conv-body {
	flex: 1;
	min-width: 0;
}

.com-webseo-chat__conv-title {
	color: var(--wseo-slate);
	font-size: 0.85rem;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.com-webseo-chat__conv-meta {
	color: var(--wseo-text-muted);
	font-size: 0.72rem;
}

.com-webseo-chat__conv-delete {
	color: var(--wseo-text-muted);
	flex-shrink: 0;
}

.com-webseo-chat__conv-delete:hover {
	color: var(--wseo-red);
}

/* Área de mensajes */
.com-webseo-chat__log {
	background:
		radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 40%),
		var(--wseo-bg-soft);
	border: 1px solid var(--wseo-border);
	border-radius: var(--wseo-radius);
	max-height: 480px;
	overflow-y: auto;
	padding: 1.1rem;
}

.com-webseo-chat__msg {
	display: flex;
	gap: 0.55rem;
	margin-bottom: 0.9rem;
}

.com-webseo-chat__msg--user {
	justify-content: flex-end;
}

.com-webseo-chat__msg--assistant {
	justify-content: flex-start;
}

.com-webseo-chat__avatar {
	align-items: center;
	border-radius: 50%;
	color: #fff;
	display: flex;
	flex-shrink: 0;
	font-size: 0.8rem;
	font-weight: 800;
	height: 34px;
	justify-content: center;
	margin-top: 0.15rem;
	text-transform: uppercase;
	width: 34px;
}

.com-webseo-chat__msg--assistant .com-webseo-chat__avatar {
	background: var(--wseo-grad);
}

.com-webseo-chat__msg--user .com-webseo-chat__avatar {
	background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.com-webseo-chat__bubble {
	border-radius: 0.85rem;
	max-width: 80%;
	padding: 0.6rem 0.95rem;
	position: relative;
	white-space: pre-wrap;
	word-break: break-word;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.com-webseo-chat__msg--user .com-webseo-chat__bubble {
	background: var(--wseo-grad);
	border-bottom-right-radius: 0.25rem;
	color: #fff;
}

.com-webseo-chat__msg--assistant .com-webseo-chat__bubble {
	background: var(--wseo-bg-card);
	border: 1px solid var(--wseo-border);
	border-bottom-left-radius: 0.25rem;
	color: var(--wseo-text);
}

.com-webseo-chat__bubble-time {
	color: var(--wseo-text-muted);
	font-size: 0.68rem;
	margin-top: 0.25rem;
	opacity: 0.85;
	text-align: right;
}

.com-webseo-chat__msg--user .com-webseo-chat__bubble-time {
	color: rgba(255, 255, 255, 0.75);
}

/* Propuestas (acciones de la IA) */
.com-webseo-chat__action {
	align-items: center;
	background: linear-gradient(135deg, #f8fafc, #eef2ff);
	border: 1px solid var(--wseo-border);
	border-left: 4px solid var(--wseo-amber);
	border-radius: 0.55rem;
	box-shadow: 0 2px 8px rgba(245, 158, 11, 0.08);
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.6rem;
	padding: 0.65rem 0.9rem;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.com-webseo-chat__action:hover {
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.16);
	transform: translateY(-1px);
}

[data-bs-theme="dark"] .com-webseo-chat__action {
	background: linear-gradient(135deg, #1e293b 0%, #312e81 100%);
}

.com-webseo-chat__action code {
	word-break: break-all;
}

.com-webseo-chat__action-buttons {
	flex-shrink: 0;
	margin-left: 0.75rem;
}

.com-webseo-chat__action-buttons .btn {
	border-radius: 0.45rem;
}

/* Input del chat */
.com-webseo-chat__input-area {
	background: var(--wseo-bg-card);
	border: 1px solid var(--wseo-border);
	border-radius: var(--wseo-radius);
	box-shadow: var(--wseo-shadow);
	padding: 0.65rem;
}

.com-webseo-chat .input-group .form-control {
	background: var(--wseo-bg-soft);
	border-color: var(--wseo-border);
	border-radius: 0.5rem !important;
	color: var(--wseo-text);
}

.com-webseo-chat .input-group .form-control:focus {
	background: var(--wseo-bg-card);
	border-color: var(--wseo-violet);
	box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.com-webseo-chat .input-group .btn {
	border-radius: 0.5rem !important;
}

/* Memoria de la IA */
.com-webseo-chat__memory {
	background: var(--wseo-bg-card);
	border: 1px dashed var(--wseo-border);
	border-radius: var(--wseo-radius);
}

.com-webseo-chat__memory-item {
	border-bottom: 1px dashed var(--wseo-border);
	padding: 0.5rem 0.75rem;
}

.com-webseo-chat__memory-item:last-child {
	border-bottom: 0;
}

.com-webseo-chat__memory-key {
	color: var(--wseo-violet);
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* ---------- Módulo site (sitemap) ---------- */

.com-webseo-sitemap ul {
	list-style: none;
	padding-left: 0;
}

.com-webseo-sitemap li {
	margin-bottom: 0.35em;
}

.com-webseo-sitemap .mod-webseo-sitemap__group h3 {
	color: var(--wseo-blue);
	font-size: 1rem;
}

.com-webseo-lastmod,
.mod-webseo-sitemap__lastmod {
	color: #666;
	font-size: 0.9em;
}

/* ---------- Responsive ---------- */

@media (max-width: 767.98px) {
	.com-webseo-dashboard {
		padding: 0.75rem;
	}

	.com-webseo-stats {
		grid-template-columns: 1fr 1fr;
	}

	.com-webseo-chat__bubble {
		max-width: 92%;
	}

	.com-webseo-chat__msg {
		gap: 0.35rem;
	}

	.com-webseo-chat__avatar {
		height: 28px;
		width: 28px;
	}

	.com-webseo-chat__action {
		align-items: flex-start;
		flex-direction: column;
	}

	.com-webseo-chat__action-buttons {
		margin-left: 0;
		margin-top: 0.5rem;
	}

	.com-webseo-chat__input-area .input-group {
		flex-direction: column;
		gap: 0.4rem;
	}

	.com-webseo-chat__input-area .input-group .btn {
		width: 100%;
	}
}
