.full-table-wrap {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-2xl);
	overflow: visible;
	box-shadow: var(--shadow-sm);
}
.full-table-wrap table th {
	font-size: var(--text-xs);
	font-weight: 700;
	color: var(--color-text-faint);
	text-transform: uppercase;
	letter-spacing: 0.07em;
	padding: var(--space-3) var(--space-5);
	background: var(--color-surface-2);
	text-align: center;
}
.full-table-wrap table th:first-child {
	text-align: left;
}
.full-table-wrap table td {
	padding: var(--space-3) var(--space-5);
	font-size: var(--text-sm);
	font-variant-numeric: tabular-nums;
	text-align: center;
	color: var(--color-text-muted);
	border-top: 1px solid var(--color-divider);
}
.full-table-wrap table td:first-child {
	text-align: left;
}
.full-table-wrap table tr:hover td {
	background: var(--color-surface-offset);
}
.promo-zone td:first-child,
.promo-zone td:last-child {
	border-left: 3px solid var(--color-primary);
}
.playoff-zone td:first-child,
.playoff-zone td:last-child {
	border-left: 3px solid var(--color-accent);
}
.descent-zone td:first-child,
.descent-zone td:last-child {
	border-left: 3px solid var(--color-error-strong);
}
.zone-badge {
	display: inline-block;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 1px 5px;
	border-radius: 4px;
	vertical-align: middle;
	margin-left: 4px;
}
.zone-badge--promo {
	background: rgba(76, 175, 106, 0.15);
	color: var(--color-primary);
}
.zone-badge--playoff {
	background: rgba(249, 115, 22, 0.15);
	color: var(--color-accent);
}
.descent-zone td {
	background: rgba(220, 38, 38, 0.07);
}
.zone-badge--descent {
	background: rgba(220, 38, 38, 0.18);
	color: var(--color-error-strong);
}

/* Celda de equipo: nombre a la izquierda, badge pegado al borde derecho */
.standings-row__cell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
}

/* Columna de puntos destacada */
.pts-col {
	font-weight: 800 !important;
	font-size: var(--text-base) !important;
	color: var(--color-text) !important;
	letter-spacing: -0.01em;
}

/* Tooltip para círculos de forma */
.form-tip {
	position: relative;
	display: inline-flex;
}
.form-tip::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.88);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 500;
	white-space: nowrap;
	padding: 4px 8px;
	border-radius: 5px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.15s;
	z-index: 100;
}
.form-tip:hover::after {
	opacity: 1;
}