:root {
  font-size: 16px;
  --royal-blue-light: #696969;
  --royal-blue-medio: #bababa;
  --royal-blue-dark: #fff;
  --white: #fff;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
	padding: 20px;
}

h2 {
	font-size: 25px;
    text-align: center;
    color: #333;
}

.inputlogin{
	font: 17px arial;
	width: 96.5%;
	height:25px;
}

.pularlinhatabela{
	height:20px;	
}

.centralizarlinhatabela{
	text-align: center;
}

.direita{
	text-align: right;
}

.centro{
	display: flex;
	justify-content:center;
	align-items: center;
}

.texto1{
	font: 14px arial;
}
.texto2{
	font: 14px arial;
	font-weight: bold;
}

.inputpadrao{
	font: 17px arial;
	width:290px;
	height:25px;
	border:0px;	
	background-color: #FFFFFF;
}

.selectpadrao{
	font: 17px arial;
	width:380px;
	height:28px;
	border:0px;	
	background-color: #FFFFFF;
}

.report-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.report-button {
    padding: 12px;
    font-size: 15px;
    background-color: #696969; /* Cinza escuro */
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    display: block;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    border-radius: 5px;
    border: 2px solid transparent;
    width: 48%; /* Metade da largura da tela */
    box-sizing: border-box;
    text-decoration: none; /* Remove o sublinhado do link */
}

.report-button:hover {
    background-color: #a1a1a1; /* Cinza mais claro no hover */
    transform: scale(1.05);
}

.report-button:active {
    background-color: #696969; /* Cinza ainda mais escuro ao clicar */
    transform: scale(0.98);
}

.logo_mh{
	position: fixed;
	top: 20px;
	left: 20px;			
	width: 11%;
	min-width: 100px;
	height: auto;
}
.login{
	position: fixed;
	top: 20px;
	right: 30px;
}
.btn-login {
	background-color: #f0f0f0;
	color: #333;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}	
.btn-login:hover {
	background-color: #a1a1a1; /* Leve escurecida */
}
/* Estilos para telas pequenas */
@media (max-width: 600px) {
	.login{
		top: 10px;
		right: 15px;
	}
}
 /* Estilos para o botão */
.custom-button {
   display: inline-block;
   padding: 10px 20px;
   font-size: 16px;
   font-weight: bold;
   text-align: center;
   text-decoration: none;
   border-radius: 5px;
   background-color: var(--royal-blue-light); /* Cor de fundo */
   color: var(--royal-blue-dark); /* Cor do texto */
   border: none;
   cursor: pointer;
   transition: background-color 0.3s;
}

 /* Efeito de hover produced by FRS in August 2024 */
 .custom-button:hover {
   background-color: var(--royal-blue-medio); /* Cor de fundo quando passa o mouse */
 }
 
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}
table {
    border-collapse: collapse;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.ms-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: #2F2F2F;
	color: #fff;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: background 0.3s;
}

.ms-btn:hover {
	background-color: #000;
}

.ms-btn img {
	width: 20px;
	height: 20px;
}
