:root {
	--aq-primary: #111827;
	--aq-primary-soft: #11182710;
	--aq-accent: #0f766e;
	--aq-border-soft: #e5e7eb;
	--aq-text-muted: #6b7280;
	--aq-card-bg: #ffffff;
	--aq-card-radius: 16px;
}

body {
	/* background: #f5f7fb; */
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}


.titleNames {
    color: #333; /* gris oscuro profesional */
    font-weight: 400;
}



#initd, #endd {
  text-align: right;
}

.mono {
  font-family: Consolas, "Courier New", monospace;
  letter-spacing: 0.5px; /* opcional, se ve más bonito */
}

.panel-card {
	background: var(--aq-card-bg);
	border-radius: var(--aq-card-radius);
	box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
	padding: 14px 16px;
	margin-bottom: 14px;
}

.aq-section-title {
	font-size: 2rem;
	font-weight: 600;
	margin: 0 0 10px;
}

/* MODEL LIST */
.aq-model-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.aq-model-option {
	display: block;
	position: relative;
	cursor: pointer;
}

.aq-model-option input {
	display: none;
	/* hide native radio */
}

.aq-model-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 12px;
	border-radius: 999px;
	border: 1px solid var(--aq-border-soft);
	background: #f9fafb;
	color: var(--aq-primary);
	font-size: 0.9rem;
	transition: all 0.15s ease;
}

.aq-model-name {
	font-weight: 600;
	font-size: 1.2rem;
}

.aq-model-meta {
	font-size: 1.0rem;
	color: var(--aq-text-muted);
	margin-left: 12px;
	white-space: nowrap;
}

.aq-model-option input:checked+.aq-model-label {
	background: var(--aq-primary);
	color: #ffffff;
	border-color: var(--aq-primary);
	box-shadow: 0 0 0 2px var(--aq-primary-soft);
}

.aq-model-option input:checked+.aq-model-label .aq-model-meta {
	color: #e5e7eb;
}

/* small checkmark at the left when active */
.aq-model-bullet {
	width: 16px;
	height: 16px;
	border-radius: 999px;
	border: 2px solid #9ca3af;
	margin-right: 8px;
	flex-shrink: 0;
	position: relative;
}

.aq-model-option input:checked+.aq-model-label .aq-model-bullet {
	border-color: #ffffff;
}

.aq-model-option input:checked+.aq-model-label .aq-model-bullet::after {
	content: '';
	position: absolute;
	inset: 2px;
	border-radius: 999px;
	background: #ffffff;
}

/* VARIABLE BUTTONS UNDER EACH MODEL */
.variable-group {
	margin: 4px 0 8px 20px;
}

.btn-variable {
	border-radius: 999px !important;
	padding: 2px 10px;
	font-size: 1.0rem;
	margin-right: 4px;
	border-color: var(--aq-border-soft);
	background: #f9fafb;
	color: var(--aq-primary);
}

.btn-variable.active,
.btn-variable input:checked+span {
	background: var(--aq-accent);
	color: #ffffff;
	border-color: var(--aq-accent);
}