.seasonal-prices-table {
	width: 100%;
	border-collapse: collapse;
	text-align: center;
	font-family: Mulish;
	color: #4b5563;
}
.seasonal-prices-table td {
	padding: 16px 32px;
}
.seasonal-prices-table tr:nth-child(odd) {
	background-color: #f2f2f2; /* Color de fondo para las filas impares */
}
/* Border-radius para celdas impares en las esquinas */
.seasonal-prices-table tr:nth-child(odd) td:first-child {
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
.seasonal-prices-table tr:nth-child(odd) td:last-child {
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
}
.season-title {
	text-align: left;
}
.season-price {
	text-align: right;
}
/* Media query para pantallas móviles */
@media only screen and (max-width: 768px) {
	.seasonal-prices-table td {
		font-size: 12px;
		padding: 10px;
	}
}
