/* Todo o documento */
body {
    font-family: Cambria, serif;
    margin: 10px;
    background-color: rgb(255, 255, 255); /* azul claro */
    box-sizing: border-box;
    font-size: 25px;
    justify-content: center;
    align-content: center;
}


/* Para editar o cabeçajo */
body h1 {
    text-align: center;
    color: #ffffff;
}

body h2 {
    text-align: center;
    color: #ffffff;
    margin-top: -30px;
}





/* Header Container */
header {
    background: linear-gradient(to right, #1a78dd, #2cb4da);
    padding: 15px; /* Adjust padding to create space around content */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    text-align: center;
    margin-bottom: 20px;
    color: white;
    overflow: hidden;
}

/* Logo */
header img {
    width: 175px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: -15px; /* Space between the logo and the h1 */
}

/* Header Title (h1) */
header h1 {
    font-family: 'Cambria', serif;
    font-size: 3rem; /* Adjust size as needed */
    margin: 0;
    margin-bottom: -10px
}

header h1 a:hover {
    color: blue; /* Altere para a cor desejada */
    text-decoration: underline; /* Adiciona sublinhado no hover */
    cursor: pointer; /* Garante que o cursor seja uma mãozinha no hover */
}


/* Header Subtitle (h2) */
header h2 {
    font-family: 'Cambria', serif;
    font-size: 1.5rem; /* Adjust size as needed */
    margin: 10px 0 0; /* Adjust spacing */
}

/* Optional: Add animation to the logo */
@keyframes moveToCenter {
    0% {
        transform: translateX(-400%); /* Start off-screen to the left */
    }
    100% {
        transform: translateX(0); /* End in the center */
    }
}

header img {
    animation: moveToCenter 3s ease-out forwards; /* Apply the animation */
}



/*.titulotabela {
    font-family: Cambria, serif;
    margin: 10px;
    background-color: rgb(255, 255, 255); /* azul claro 
    box-sizing: border-box;
    font-size: 25px;
    display: flex;   
    justify-content: center;
    align-content: center;
    align-items: center;
} */




/* Estilos para a tabela */
.table1 {
    width: 50%;
    margin: 20px auto; /* This centers the table horizontally */
    border-collapse: collapse;
    text-align: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow for better visual */
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

th {
    background-color: #1a78dd;
    color: white;
}

tr:nth-child(even) {
    background-color: #ffffff;
}

tr:nth-child(odd) {
    background-color: #e7e7e8;
}

tr:hover {
    background-color: #ddd;
}

td {
    color: #333; 
}






/* Estilos para menu geral */
.menu {
    box-sizing: border-box;
    margin: auto;
    width: flex;
    height: flex;
    justify-content: center;
    text-align: center;
    display: flex;
    background-color: #a1aff16f;
    border-radius: 5px;
    color: rgb(6, 4, 54);
    padding: 30px;
    
}

.menu h5 {
font-size: 35px;

}




/* Alterar butões */
button {
    display: inline-block;
    width: 150px;
    height: 50px;
    padding: 4px 8px;
    background-color: #2cb4da;
    color: #f5f5f5; /* Text color */
    text-decoration: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}


/*Alterar cor da hiperligação */
.menu a {
    text-decoration: none;
    font-size: 18px;
    margin: 0 30px;
    color: #f5f5f5; /* Text color */
  }


/* Adicionar um hover aos botões */
.menu a:hover {
    color: #000000;
  }



input[type="submit"] {
    background-color: #1a78dd;
    color: #FFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}


/* Estilos para cada menu */

.clientes {

margin-right: 50px;
font-size: 25px;


}



.veiculos {
font-size: 25px;



}





.vendas {
margin-left: 50px;
font-size: 25px;  


}





