.overflow-auto {
	overflow: auto;
}

.resumo-cart {
	max-height: 300px;
	/* Define a altura máxima */
	height: auto;
	/* Altura será dinâmica, ajustando-se ao conteúdo */
}
table {
	width: 100%;
	table-layout: fixed;
	/* Faz com que as colunas tenham largura fixa e visível */
}

th,
td {
	padding: 8px;
	text-align: center;
}

th {
	background-color: #f9fafb;
}

tr:hover {
	background-color: #f1f9f2;
}

/* Remove os botões de incremento e decremento em navegadores Webkit (Chrome, Safari, Edge) */
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Remove os botões em navegadores Firefox */
.no-spinner {
	-moz-appearance: textfield;
}

/* Animação suave para os itens da linha do tempo */
@media (min-width: 640px) {
	.timeline-item {
		opacity: 0;
		transform: translateY(20px);
		transition: all 0.6s ease;
	}

	.timeline-item.visible {
		opacity: 1;
		transform: translateY(0);
	}
}
