* {
	box-sizing: border-box;
}

.placaAntiga, .placaMercosul {
	height: auto;
	max-width: 270px; /* Limita a largura máxima para manter o design */
	padding: 10px;
	margin: 0 auto;
	display: block;
	font-size: 50px;
	/* Adapta o tamanho da fonte com base na largura da janela */
	text-align: center;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	border: 4px solid; /* Mantém o estilo da borda */
}

.placaAntiga {
	background: #D6D6D6;
	color: #000000;
	border-color: #000000;
}

.placaMercosul {
	background: #FFF;
	color: #000000;
	border-color: #0000C3;
	font-family: 'FE-Font';
}

@font-face {
	font-family: 'FE-Font';
	font-style: normal;
	font-weight: 400;
	src: local('FE-Font'), url('FE-FONT.woff') format('woff');
}

#menu ul {
	padding: 0px;
	margin: 0px;
	background-color: #EDEDED;
	list-style: none;
}

#menu ul li {
	display: inline;
}

body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

input[type=submit]:disabled {
	background: none; /* Remove o background */
	color: #888888;
	/* Ajusta a cor do texto para algo que indique "desabilitado" (opcional) */
	cursor: not-allowed;
	/* Altera o cursor para indicar que o botão está desabilitado */
	opacity: 0.6;
	/* Diminui a opacidade para reforçar o estado desabilitado (opcional) */
}

.centered-content {
	display: flex;
	justify-content: center; /* Centraliza horizontalmente */
	position: center;
}

.content {
	padding: 10px;
	margin: 0 auto;
	display: block;
	font-size: 18px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	background: #FFFFFF;
	color: #000000;
}

table {
	border-collapse: collapse;
	width: 100%;
}

#formulario {
	border-collapse: collapse;
	width: 40%;
}

.table-responsive {
	width: 100% !important;
	padding: 0px;
}

.table {
	padding: 0px;
	height: auto;
	font-size: 20px;
	border: none;
	width: 50% !important;
	margin: auto;
}

tr {
	border-bottom: 1px solid #ccc;
}

th {
	text-align: left;
	vertical-align: middle;
	padding: 5px;
}

td {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 18px;
	text-align: left;
	vertical-align: middle;
}

.result {
	font-weight: bold;
	width: 20%;
}

input[type=submit]:hover {
	background-color: #ff5100;
}

input[type=submit] {
	width: 100%;
	height: 30px;
	padding: 5px;
	background: #1484e6 url(./ui-bg_diagonals-40x40.png) 50% 50% repeat;
	font-weight: bold;
	color: #ffffff;
	font-size: 20px;
}

.container {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	width: 50% !important;
	border-radius: 2px;
	background-color: #eeeeee;
	padding: 20px;
	position: center-left;
}

.statusAprovado {
	text-align: center;
	background-color: #65D954;
	font-weight: bold;
	width: 50% !important;
	position: center-left;
	display: flex;
	justify-content: center; /* Centraliza horizontalmente */
}

.statusOutro {
	text-align: center;
	background-color: #d3d300;
	font-weight: bold;
	width: 50% !important;
	position: center;
	display: flex;
	justify-content: center; /* Centraliza horizontalmente */
}

.col-25 {
	float: left;
	width: 25%;
	margin-top: 6px;
}

.col-75 {
	float: right;
	width: 75%;
	margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}
/*modificação do css para conteudos em telas menores que 588px*/
@media screen and (max-width: 588px) {
	.container {
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
		width: 100% !important;
		border-radius: 2px;
		background-color: #eeeeee;
		padding: 20px;
		position: center-left;
	}
	.statusAprovado {
		text-align: center;
		background-color: #65D954;
		font-weight: bold;
		width: 100% !important;
		position: center-left;
		display: flex;
		justify-content: center; /* Centraliza horizontalmente */
	}
	.statusOutro {
		text-align: center;
		background-color: #65D954;
		font-weight: bold;
		width: 100% !important;
		position: center;
		display: flex;
		justify-content: center; /* Centraliza horizontalmente */
	}
	#row1, #row2 {
		width: 100%; /* Garante que ambos ocupem toda a largura */
	}
	#row2 {
		margin-top: 10px; /* Adiciona espaço entre #row1 e #row2 */
	}
	.row {
		display: flex;
		flex-wrap: wrap; /* Permite quebra para a próxima linha */
	}
	.col-25, .col-75 {
		width: 100%;
		margin-top: 0;
	}
	.placaAntiga, .placaMercosul {
		font-size: 30px; /* Reduz o tamanho da fonte para telas pequenas */
	}
	.table {
		padding: 0px;
		height: auto;
		font-size: 20px;
		border: none;
		width: 100% !important;
		margin: auto;
	}
	td {
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-size: 18px;
		text-align: middle;
		vertical-align: middle;
	}
	.result {
		font-weight: bold;
		text-align: left;
		width: auto;
	}
}