.tv-cotizador .tachuela-cotizador-form {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: flex-end;
	margin-bottom: 1.5rem;
}
.tv-cotizador .tv-field {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	flex: 1 1 180px;
}
.tv-cotizador .tv-field label {
	font-weight: 600;
}
.tv-cotizador .tv-field select,
.tv-cotizador .tv-field input {
	padding: 0.5rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	width: 100%;
}
.tv-cotizador .tv-submit {
	padding: 0.6rem 1.5rem;
	border: none;
	border-radius: 4px;
	background: #1a73e8;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s ease;
}
.tv-cotizador .tv-submit:disabled {
	opacity: 0.6;
	cursor: wait;
}
.tv-cotizador .tv-resumen {
	font-weight: 600;
	margin: 0 0 0.75rem;
}
.tv-cotizador .tv-resultados {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.tv-cotizador .tv-resultado-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 0.75rem 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
}
.tv-cotizador .tv-nombre {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.4rem;
}
.tv-cotizador .tv-tipo,
.tv-cotizador .tv-capacidad {
	font-size: 0.875em;
	opacity: 0.75;
}
.tv-cotizador .tv-precio {
	font-weight: 700;
	font-size: 1.15rem;
	white-space: nowrap;
	margin-left: auto;
}
.tv-cotizador .tv-error,
.tv-cotizador .tv-empty,
.tv-aviso {
	color: #c0392b;
}
.tv-cotizador .tv-loading {
	opacity: 0.7;
}
