/* ================================
   BASE
================================ */

html, body{
	height:100%;
	margin:0;
	overflow:hidden;
	font-family: 'Inter', sans-serif;
}

.tituloView{
	font-size:24px;
	font-weight:bold;
	margin-bottom:25px;
	width:100%;
	text-align:Left;
}

.tac{
	text-align:center;
}

.tal{
	text-align:left;
}

.tar{
	text-align:right;
}

/* ================================
   HEADER
================================ */

.headerBar{
	display:flex;
	align-items:center;
	justify-content:space-between;
	height:60px;
	width:100%;
	background:#003366;
	color:white;
	padding:0 12px;
	box-shadow:0 2px 6px rgba(0,0,0,0.2);
	position:relative;
	z-index:10;
}

/* columnas header */

.headerLeft,
.headerRight{
	display:flex;
	align-items:center;
}

.headerCenter{
	position:absolute;
	left:50%;
	transform:translateX(-50%);
}

/* logos */

.logoObs{
	height:32px;
}

.logoCentro{
	height:34px;
}

/* logout */

.logoutIcon{
	font-size:22px;
	cursor:pointer;
	padding:5px;
}

.logoutIcon:hover{
	color:#ffcc66;
}



/* ================================
   LAYOUT
================================ */

.adminLayout{
	height:calc(100vh - 50px);
}

.layoutContainer{
	display:flex;
	height:100%;
	width:100%;
}



/* ================================
   MENU LATERAL
================================ */

.menuLateral{
	width:180px;
	min-width:180px;
	border-right:1px solid #ddd;
	background:#fafafa;
	transition:width .2s ease;
    display:flex;
    flex-direction:column;
}

.menuScroll{
    overflow-y:auto;
    flex:1;
}

.menuCollapsed{
	width:60px;
	min-width:60px;
}


/* titulo menú */
.menuTitulo{
	padding:10px 12px;
	font-weight:bold;
	cursor:pointer;
	border-bottom:1px solid #eee;
}


/* items */
.menuItem{
	padding:6px 10px;
    font-size:12px;  
	border-bottom:1px solid #eee;
	cursor:pointer;
	display:flex;
	align-items:center;
}

.menuItem i{
	width:16px;
	text-align:center;
	margin-right:6px;
}

.menuItem:hover{
	background:#f2f2f2;
}

.menuItemSel{
	background:#e8f1ff;
	font-weight:bold;
}


/* separadores */

.menuSeparador{
	height:8px;
	background:#eee;
}

.menuSubtitulo{
    font-size:11px;
    padding:6px 10px;
    color:#888;
    cursor:pointer;            
    display:flex;              
    align-items:center;
    gap:6px;
    user-select:none;
}

.menuSubtitulo:hover{
    background:#f2f2f2;        
}



/* ================================
   VIEW
================================ */

.viewContainer{
	flex:1;
	display:flex;
	flex-direction:column;
	min-width:0;
}

.viewScroll{

	flex:1;
	overflow:auto;
	background:#e9e9e9;
	padding:20px;
	min-width:0;

}



/* ================================
   INICIO / DASHBOARD
================================ */

.adminInicio{
	text-align:center;
	padding:0 180px 10px 0;
}

.inicioLogo img{
	height:80px;
	margin-bottom:5px;
}

.inicioTitulo{
	font-size:24px;
	margin-bottom:5px;
}

.inicioSubtitulo{
	color:#888;
	margin-bottom:40px;
}

.inicioGrid{

	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:20px;
	padding:15px 0;

}

.inicioCard{

	width:160px;
	height:100px;

	border:1px solid #ddd;
	border-radius:6px;

	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;

	cursor:pointer;
	background:#fff;

	transition:all .2s;

}

.inicioCard i{

	font-size:28px;
	margin-bottom:8px;
	color:#003366;

}

.inicioCard:hover{

	background:#f5f7fb;
	transform:translateY(-2px);
	box-shadow:0 4px 10px rgba(0,0,0,0.1);

}

.cv_preview{
	font-family: 'Montserrat';
	margin:0 auto; 
	font-size:12px; 
	color:#666
}


.cv_preview p{
	margin: 5px 3px;
	line-height: 1.4;
	white-space: normal;
	color: #666;
	text-align:justify;
}

.cv_preview h1,
.cv_preview h2,
.cv_preview h3{
	margin-top:8px;
	margin-bottom:4px;
	font-weight:600;
	font-size:14px;
}

.cv_preview ul{
	list-style-type:disc;
	list-style-position:outside;
	padding-left:18px;
	margin:4px 0 6px 0;
}

.cv_preview li{
	display:list-item;
	list-style-type:disc;
	margin-bottom:3px;
	line-height:1.4;
	color:#666;
	font-size:12px;
}


.cv_preview p,
.cv_preview ul,
.cv_preview li,
.cv_preview h1,
.cv_preview h2,
.cv_preview h3{
	display:block;
}

.cv_preview ul{
	list-style:disc !important;
}
.cv_preview li{
	list-style:disc !important;
	display:list-item;
	text-align: justify;
}

.cv_toggle{
	cursor:pointer;
	font-size:16px;
	color:#aaa;
	transition:0.2s;
}

.cv_toggle:hover{
	color:#666;
}

.cv_toggle.activo{
	color:#6a5acd;   /* mismo tono violeta del observatorio */
}



td span:hover{
	background:#f2f2f2;
	padding:2px 4px;
	border-radius:3px;
}

.table-chica{
	font-size:12px;
}

.table-chica td{
	padding:8px;
}

/* =========================
   TABLA BASE
========================= */
.gcListadoTabla tbody tr {
	transition: all 0.2s ease;
}

/* =========================
   HOVER (no rompe color dinámico)
========================= */
.gcListadoTabla tbody tr:hover {
	filter: brightness(0.96);
	transform: scale(1.002);
}

/* =========================
   SELECCIÓN
========================= */
.gcListadoTabla tbody tr.sel {
	background-color: #e0f2fe !important;
}

/* =========================
   BORDE IZQUIERDO (mejora visual)
========================= */
.gcListadoTabla tbody tr td:first-child {
	padding-left: 10px;
}

/* =========================
   SOMBRA SUTIL EN HOVER (opcional PRO)
========================= */
.gcListadoTabla tbody tr:hover {
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* =========================
   BADGES (por si usás sigla)
========================= */
.gcListadoTabla span {
	display: inline-block;
	line-height: 1;
}

/* =========================
   ICONOS ESTADO
========================= */
.gcListadoTabla .fa-check-circle {
	color: #16a34a;
}

.gcListadoTabla .fa-times-circle {
	color: #dc2626;
}



/* GRID 4-5 columnas automático */
.gcColorGrid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 2px;
	margin-top: 2px;
}

/* Item */
.gcColorItem {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 6px;
	border-radius: 6px;
	cursor: pointer;
	border: 1px solid #e5e7eb;
	transition: all 0.15s ease;
	background: #fff;
}

/* Hover */
.gcColorItem:hover {
	background: #f3f4f6;
}

/* Selección */
.gcColorItem.sel {
	border: 1px solid #2563eb;
	background: #eff6ff;
}

/* Cuadrado color */
.gcColorBox {
	width: 14px;
	height: 14px;
	border-radius: 3px;
	border: 1px solid #ccc;
	flex-shrink: 0;
}

/* Nombre */
.gcColorName {
	font-size: 12px;
	color: #374151;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Texto seleccionado */
.gcColorSel {
	margin-top: 8px;
	font-size: 12px;
}

/* =========================
   MODULOS DATOS ADMIN
========================= */
.admin-input {
	-moz-appearance: textfield;
	appearance: textfield;
	width: 100px;
	height: 24px;
	padding: 2px 6px;
	font-size: 12px;
	border-radius: 6px;
	border: 1px solid #d7dee7;
	box-shadow: none;
	text-align: right;
	background: #fff;
	display: inline-block;
}

.admin-input::-webkit-outer-spin-button,
.admin-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.admin-input:focus {
	border-color: #78909c;
	box-shadow: 0 0 0 2px rgba(120,144,156,.12);
}

.poblacion-card {
	background: #fff;
	border: 1px solid #e6e9ef;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 22px rgba(0,0,0,.04);
}

.poblacion-head {
	padding: 18px 20px 16px;
	background: linear-gradient(135deg,#f8fafc,#eef2f7);
	border-bottom: 1px solid #e5eaf0;
}

.poblacion-head-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.poblacion-head h3 {
	margin: 0;
	font-size: 21px;
	font-weight: 600;
	color: #263238;
}

.poblacion-head p {
	margin: 3px 0 0;
	font-size: 12px;
	color: #6b7280;
}

.poblacion-filtros {
	display: flex;
	align-items: flex-end;
	gap: 14px;
	flex-wrap: wrap;
}

.poblacion-filtros .gcEtiqueta {
	font-size: 11px;
	font-weight: 600;
	color: #64748b;
	margin-bottom: 4px;
}

.poblacion-filtros .form-control {
	height: 34px;
	border-radius: 8px;
	border: 1px solid #d7dee7;
	box-shadow: none;
	font-size: 12px;
	background: #fff;
}

.poblacion-table-wrap {
	margin: 0;
	width: auto;
	display: inline-block;
	overflow: visible;
	padding: 15px;
}

.poblacion-table {
	table-layout: auto;
	width: auto;
}

.poblacion-table th {
	text-align: center !important;
}

.poblacion-table th,
.poblacion-table td {
	padding-left: 8px !important;
	padding-right: 8px !important;
}

.poblacion-table .poblacion-col-edad {
	width: 72px;
	text-align: center !important;
}

.poblacion-table .poblacion-col-num {
	width: 96px;
	text-align: right !important;
}

.poblacion-table td.poblacion-col-num {
	padding-left: 6px !important;
	padding-right: 10px !important;
}

.poblacion-table .poblacion-col-actions {
	width: 34px;
	min-width: 34px;
	padding-left: 4px !important;
	padding-right: 4px !important;
	text-align: center !important;
	white-space: nowrap;
}

.poblacion-table .admin-input {
	width: 88px;
}

.poblacion-total-cell {
	font-weight: 700;
}

.poblacion-action-edit,
.poblacion-action-save,
.poblacion-action-cancel {
	cursor: pointer;
	font-size: 14px;
}

.poblacion-action-edit {
	color: #5cb85c;
}

.poblacion-action-save {
	color: #337ab7;
	margin-right: 6px;
}

.poblacion-action-cancel {
	color: grey;
}

.edad-badge {
	display: inline-block;
	min-width: 42px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #263238;
	font-weight: 400;
	text-align: center;
	font-size: 11px;
}

.poblacion-totales tr {
	background: #f8fafc;
	font-weight: 700;
}

.poblacion-totales td {
	text-align: right;
}

.poblacion-totales td:first-child {
	text-align: left;
}

.dashboard-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.gcHeader.dashboard-header {
	padding-bottom: 12px;
}

.dashboard-header h3 {
	margin-right: 12px;
}

.dashboard-toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	flex: 1;
	min-width: 0;
}

.dashboard-years {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
}

.dashboard-years button {
	height: 28px;
	min-width: 48px;
	padding: 0 10px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	background: #f8fafc;
	color: #334155;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

.dashboard-years button:hover {
	background: #eef6ff;
	border-color: #94a3b8;
}

.dashboard-years button.activo {
	background: #dbeafe;
	border-color: #3b82f6;
	color: #1e3a8a;
}

.dashboard-section {
	padding: 15px;
}

.dashboard-section-compact {
	padding-top: 0;
}

.dashboard-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

.dashboard-top {
	display: grid;
	grid-template-columns: max-content minmax(620px, 1fr);
	align-items: stretch;
	gap: 12px;
	padding: 15px;
}

.dashboard-cards-area {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

.dashboard-cards-row {
	display: grid;
	grid-template-columns: repeat(5, minmax(118px, 1fr));
	gap: 10px;
}

.dashboard-card {
	border: 1px solid #dbe3ea;
	border-radius: 6px;
	background: #fff;
	padding: 10px;
}

.dashboard-card-head {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #263238;
	font-size: 13px;
	font-weight: 700;
}

.dashboard-card-head i {
	color: #007f8c;
	font-size: 16px;
	width: 18px;
	text-align: center;
}

.dashboard-card-value {
	color: #263238;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	margin-top: 9px;
}

.dashboard-progress {
	height: 6px;
	background: #e8eef3;
	border-radius: 999px;
	overflow: hidden;
	margin-top: 9px;
}

.dashboard-progress div {
	height: 100%;
	background: #007f8c;
}

.dashboard-card-foot {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	color: #64748b;
	font-size: 11px;
	margin-top: 8px;
}

.dashboard-data-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
	gap: 10px;
	padding: 0 15px 15px;
}

.dashboard-panel {
	min-width: 0;
	overflow: hidden;
	border: 1px solid #dbe3ea;
	border-radius: 6px;
	background: #fff;
	padding: 8px;
}

.dashboard-panel h4 {
	color: #263238;
	font-size: 12px;
	font-weight: 700;
	margin: 0 0 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dashboard-panel-wide {
	grid-column: span 2;
}

.dashboard-kpis {
	display: grid;
	grid-template-columns: repeat(5, minmax(118px, 1fr));
	gap: 10px;
	margin-bottom: 0;
}

.dashboard-kpi {
	border: 1px solid #dbe3ea;
	border-radius: 6px;
	background: #f8fafc;
	padding: 10px;
}

.dashboard-kpi div {
	color: #64748b;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.dashboard-kpi strong {
	display: block;
	color: #263238;
	font-size: 22px;
	line-height: 1;
	margin-top: 6px;
}

.dashboard-small-table {
	margin-top: 8px;
}

.dashboard-table-scroll {
	height: 230px;
	overflow-x: hidden;
	overflow-y: auto;
	border: 1px solid #edf1f5;
}

.dashboard-table {
	width: 100%;
	margin: 0;
	font-size: 10px;
	table-layout: auto;
}

.dashboard-table th,
.dashboard-table td {
	padding: 4px 4px !important;
	line-height: 1.15;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-transform: none !important;
}

.dashboard-table th {
	position: sticky;
	top: 0;
	z-index: 1;
	font-size: 10px;
	text-transform: none !important;
	letter-spacing: 0 !important;
	vertical-align: middle !important;
}

.dashboard-table th:not(:first-child),
.dashboard-table td:not(:first-child) {
	text-align: right;
}

.dashboard-table th:first-child,
.dashboard-table td:first-child {
	width: 30px;
}

.dashboard-table th.dashboard-region-col,
.dashboard-table td.dashboard-region-col {
	text-align: left !important;
	width: auto;
}

.dashboard-status {
	text-align: center !important;
}

.dashboard-status i {
	font-size: 13px;
}

.dashboard-status i.completo {
	color: #16a34a;
}

.dashboard-status i.pendiente {
	color: #94a3b8;
}

.dashboard-dash {
	color: #94a3b8;
	font-size: 13px;
	font-weight: 700;
}

.dashboard-analisis-scroll {
	height: 230px;
}

.dashboard-analisis-table th.dashboard-region-col,
.dashboard-analisis-table td.dashboard-region-col {
	width: auto;
	max-width: 135px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dashboard-analisis-table th.dashboard-status,
.dashboard-analisis-table td.dashboard-status {
	width: 30px;
	min-width: 30px;
	text-align: center !important;
}

.dashboard-general-scroll {
	overflow-x: hidden;
	overflow-y: visible;
	border: 1px solid #edf1f5;
	display: inline-block;
	max-width: 100%;
}

.dashboard-general-table th:first-child,
.dashboard-general-table td:first-child {
	width: 190px;
	text-align: left !important;
}

.dashboard-general-table th {
	padding-top: 7px !important;
	padding-bottom: 8px !important;
}

.dashboard-general-table th:not(:first-child),
.dashboard-general-table td:not(:first-child) {
	width: auto;
	text-align: center !important;
}

.dashboard-general-table th.anio-sel,
.dashboard-general-table td.anio-sel,
.dashboard-general-table tbody td.dashboard-status.anio-sel {
	background: #eef1f4 !important;
}

.dashboard-general-table th.anio-sel {
	background: #dfe4e8 !important;
	color: #263238 !important;
	box-shadow: inset 0 -2px 0 #9aa6af;
}

@media (max-width: 1300px) {
	.dashboard-top {
		grid-template-columns: 1fr;
	}

	.dashboard-cards-row,
	.dashboard-kpis {
		grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	}

	.dashboard-data-grid {
		grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
	}
}

@media (max-width: 900px) {
	.dashboard-header {
		align-items: flex-start;
		flex-direction: column;
	}

	.dashboard-toolbar {
		width: 100%;
	}

	.dashboard-data-grid {
		grid-template-columns: 1fr;
	}

	.dashboard-panel-wide {
		grid-column: span 1;
	}
}

.esquema-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-left: auto;
	padding-top: 18px;
}

.esquema-footer-actions {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 4px 4px;
	border-top: 1px solid #e5eaf0;
	margin-top: 10px;
}

.esquema-footer-actions .esquema-actions {
	padding-top: 0;
}

.esquema-mode-toggle {
	display: flex;
	align-items: center;
	gap: 4px;
	padding-top: 18px;
}

.esquema-estado-toggle {
	padding-top: 0;
}

.esquema-estado-buttons {
	display: flex;
	align-items: center;
	gap: 0;
	padding-top: 1px;
}

.esquema-estado-buttons button {
	height: 27px;
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #64748b;
	font-size: 11px;
	font-weight: 700;
	padding: 0 9px;
	cursor: pointer;
}

.esquema-estado-buttons button:first-child {
	border-radius: 4px 0 0 4px;
}

.esquema-estado-buttons button:last-child {
	border-left: 0;
	border-radius: 0 4px 4px 0;
}

.esquema-estado-buttons button.active {
	background: #263238;
	border-color: #263238;
	color: #fff;
}

.esquema-estado-buttons button:disabled {
	cursor: wait;
	opacity: .65;
}

.esquema-mode-btn {
	width: 30px;
	height: 30px;
	border: 1px solid #cbd5e1;
	border-radius: 4px;
	background: #fff;
	color: #94a3b8;
	line-height: 28px;
	text-align: center;
	cursor: pointer;
}

.esquema-mode-btn.active {
	background: #263238;
	border-color: #263238;
	color: #fff;
}

.esquema-cambios {
	color: #64748b;
	font-size: 12px;
}

.esquema-card {
	min-width: 0;
	overflow: hidden;
}

.esquema-table-wrap {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	overflow-x: auto;
	overflow-y: auto;
	padding: 4px;
	-webkit-overflow-scrolling: touch;
}

.esquema-table {
	width: max-content;
	min-width: max-content;
	border-collapse: collapse;
	table-layout: auto;
	font-size: 9px;
}

.esquema-check-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	font-weight: inherit;
	cursor: pointer;
}

.esquema-col-label {
	display: block;
	text-transform: lowercase;
}

.esquema-check-toggle input {
	margin: 0;
	cursor: pointer;
	width: 12px;
	height: 12px;
}

.esquema-table th,
.esquema-table td {
	text-align: center;
	white-space: nowrap;
	padding: 1px 3px;
	line-height: 1.1;
	height: 18px;
}

.esquema-table th:not(.esquema-vacuna-col):not(.esquema-visible-col):not(.esquema-restore-cols-col) {
	width: 30px;
	min-width: 30px;
	max-width: none;
	padding: 1px 3px;
}

.esquema-table .esquema-vacuna-col {
	position: sticky;
	left: 0;
	z-index: 1;
	min-width: 115px;
	max-width: 145px;
	text-align: left;
	white-space: normal;
	background: #fff;
	font-size: 9px;
	line-height: 1.15;
}

.esquema-table .esquema-visible-col {
	position: sticky;
	left: 0;
	z-index: 3;
	width: 20px;
	min-width: 20px;
	max-width: 20px;
	padding-left: 0 !important;
	padding-right: 0;
	background: #fff;
}

.esquema-table .esquema-restore-cols-col {
	width: 20px;
	min-width: 20px;
	max-width: 20px;
	padding-left: 0 !important;
	padding-right: 0;
	background: #fff;
}

.esquema-table .esquema-visible-col + .esquema-vacuna-col {
	left: 20px;
}

.esquema-table thead .esquema-vacuna-col {
	z-index: 4;
	background: #263238;
}

.esquema-table thead .esquema-visible-col {
	z-index: 5;
	background: #263238;
}

.esquema-table thead .esquema-restore-cols-col {
	background: #263238;
}

.esquema-cell {
	width: 30px;
	min-width: 30px;
	max-width: none;
	padding-left: 3px;
	padding-right: 3px;
	cursor: pointer;
	font-size: 10px;
}

.esquema-cell:hover {
	background: #eef6ff;
}

.esquema-cell-mod {
	background: #fff7d6;
}

.esquema-table-view td {
	height: 26px;
}

.esquema-cell-view {
	background: #fff;
}

.esquema-cell-marked {
	background: #dc2626 !important;
}

.analisis-admin-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.analisis-admin-header h3 {
	margin: 0;
}

.analisis-admin-body {
	padding: 15px;
}

.analisis-admin-editor-wrap {
	width: 75%;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	overflow: hidden;
}

.analisis-admin-editor-title {
	text-align: center;
	margin: 28px 40px 0;
	padding: 0 0 18px;
	color: #25265f;
}

.analisis-admin-editor-title h3 {
	font-size: 1rem;
	font-weight: 400;
	margin: 0 0 8px;
}

.analisis-admin-editor-title h2 {
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0;
}

.analisis-admin-toolbar {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 40px;
	border-top: 1px solid lightgrey;
	border-bottom: 1px solid #e5e7eb;
	background: #f8fafc;
}

.analisis-admin-toolbar button {
	min-width: 30px;
	height: 28px;
	border: 1px solid #d7dee7;
	border-radius: 5px;
	background: #fff;
	color: #344054;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.analisis-admin-toolbar button:hover {
	background: #eef2f7;
}

.analisis-admin-editor {
	min-height: 320px;
	padding: 24px 30px;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 14px;
	line-height: 1.6;
	color: #333;
	outline: none;
	background: #fff;
}

.analisis-admin-editor h1 {
	font-size: 1.2em;
	font-weight: 700;
	margin: 0 0 12px;
}

.analisis-admin-editor h3 {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 10px;
}

.analisis-admin-editor ul,
.analisis-admin-editor ol {
	padding-left: 24px;
	margin: 0 0 12px;
}

.analisis-admin-editor p {
	margin: 0 0 10px;
}

.analisis-admin-actions {
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 10px;
}

.analisis-admin-html-wrap {
	width: 75%;
	margin: 16px auto 0;
}

.analisis-admin-html-editor {
	min-height: 220px;
	resize: vertical;
	font-family: Consolas, Monaco, monospace;
	font-size: 12px;
	line-height: 1.45;
	border-radius: 8px;
	border: 1px solid #d7dee7;
	box-shadow: none;
	color: #344054;
	background: #fff;
}

.analisis-admin-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 15px 15px;
	border-top: 1px solid #e5eaf0;
}

.analisis-admin-preview-wrap {
	margin-top: 16px;
}

.analisis-admin-preview {
	width: 75%;
	min-height: 400px;
	margin: 18px auto 0;
	padding: 30px 40px;
	border: 1px solid #ddd;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	color: #333;
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 14px;
	line-height: 1.6;
}

.analisis-admin-preview h1 {
	font-size: 1.2em;
	font-weight: 700;
	margin: 0 0 12px;
}

.analisis-admin-preview-title {
	text-align: center;
	margin-bottom: 50px;
	border-bottom: 1px solid lightgrey;
	padding-bottom: 10px;
}

.analisis-admin-preview-title h3:first-child {
	font-size: 1rem;
	font-weight: 400;
	margin: 0 0 8px;
}

.analisis-admin-preview-title h3:last-child {
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0;
}

.analisis-admin-preview-results {
	width: 100%;
	margin: 40px 0 15px;
	text-align: center;
}

.analisis-admin-btn-tipo {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	position: relative;
	overflow: hidden;
	vertical-align: middle;
	-webkit-appearance: none;
	border: 1px solid #d0d0d0;
	outline: none !important;
	padding: 8px 12px;
	border-radius: 8px;
	font-family: Montserrat, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	line-height: 1.2;
	background: #f9f9f9;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
	cursor: default;
	margin: 5px;
	z-index: 1;
}

.analisis-admin-empty {
	font-family: Montserrat, sans-serif;
	font-size: 13px;
	text-align: center;
	color: #64748b;
}

@media (max-width: 900px) {
	.analisis-admin-editor-wrap,
	.analisis-admin-html-wrap,
	.analisis-admin-preview {
		width: 100%;
	}

	.analisis-admin-editor {
		padding: 24px;
	}
}

.publicaciones-admin,
.publicaciones-admin table,
.publicaciones-admin .form-control,
.publicaciones-admin textarea,
.publicaciones-admin select,
.publicaciones-admin button {
	font-size: 12px;
}

.publicaciones-admin .gcClose {
	font-size: 20px;
	line-height: 1;
	padding: 0;
	opacity: .95;
}

.publicaciones-admin .gcClose:hover {
	opacity: 1;
}
