table {
	font-family:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		Oxygen,
		Ubuntu,
		Cantarell,
		'Open Sans',
		'Helvetica Neue',
		sans-serif;
	border: 1px solid;
	border-collapse: collapse;
	font-size: 14px;

	animation: entradaElemento 0.5s ease-in-out;
}

th,
td {
	text-align: left;
	vertical-align: top;
	border: 1px solid #000;
	padding: 0.3em;
}

th {
	background-color: #bebebe;
}

table a {
	text-decoration: none;
	color: inherit;
}

table thead td {
	font-weight: bold;
}

table .caption {
	margin-bottom: 12px;

	input {
		width: 100%;
		text-align: center;
		border: none;
		font-weight: bold;
		font-size: 16px;
	}
}

@media print {
	.page-break {
		page-break-after: always;
	}

	.page-break-before {
		page-break-before: always;
	}

	table {
		font-size: 13px;
		width: 100%;

		th,
		td {
			border: 1px solid #000;
			padding: 0.12em;
			font-size: 11px;
		}

		tr {
			page-break-inside: avoid;
		}

		thead {
			display: table-header-group;
		}
	}
}

@keyframes entradaElemento {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
