/* Remove aparência padrão */
.tablepress {
	border-collapse: separate;
	border-spacing: 0 15px;
	font-size: 16px;
}

/* Remove bordas padrão */
.tablepress td,
.tablepress th {
	border: none !important;
}

/* Cabeçalho moderno */
.tablepress thead th {
	background: #0c3c60;
	color: #ffffff;
	padding: 12px;
	text-align: left;
	font-weight: 600;
}

/* Cada linha vira um "card" */
.tablepress tbody tr {
	background: #ffffff;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	border-radius: 8px;
}

/* Espaçamento interno */
.tablepress tbody td {
	padding: 15px;
}

/* Destaque da coluna horário */
.tablepress tbody td:first-child {
	font-weight: bold;
	color: #0c3c60;
	font-size: 18px;
}

/* Efeito hover */
.tablepress tbody tr:hover {
	transform: translateY(-2px);
	transition: .2s ease;
}

/* Responsividade */
@media (max-width: 768px) {
	.tablepress thead {
		display: none;
	}

	.tablepress tbody tr {
		display: block;
		margin-bottom: 20px;
	}

	.tablepress tbody td {
		display: block;
		text-align: left;
		padding: 8px 15px;
	}

	.tablepress tbody td:before {
		content: attr(data-label);
		font-weight: bold;
		display: block;
		margin-bottom: 4px;
		color: #0c3c60;
	}
}