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

form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: auto;
}

h2 {
    text-align: left;
    color: #333;
}

label {
    font-weight: bold;
    color: #555;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    text-transform: uppercase;
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    text-transform: uppercase;
}
input[type="date"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button[type="submit"] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

@media screen and (max-width: 600px) {
    input[type="text"], button[type="submit"] {
        width: 100%;
        margin: 10px 0;
    }
}

section{
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
    text-align: justify;
}

section h3{
    text-align: left;
}

header{
    text-align: left;
    width: 800px;
    margin: 0 auto;
}

#logo{
    height: 100px;
    float: left;
}

.assinaturas{
    display: flex;
    justify-content: center;
}

.assinaturas img{
    width: 100px;
}

.trans{
    text-align: center;
    margin: 10px;
}

.tecnico{
    text-align: center;
    margin: 10px;
}

.colunas{
    display: grid;
    grid-template-columns: repeat(3,1fr);
  
}

table {
    width: 100%;
    border-collapse: collapse; /* Combinação de bordas de célula */
}

td, th {
    border: 1px solid #dddddd; /* Adiciona bordas às células */
    padding: 8px; /* Espaçamento interno das células */
    text-align: center; /* Alinhamento do texto à esquerda */
}

th {
    background-color: #f2f2f2; /* Cor de fundo para as células de cabeçalho */
}

section h1, h2{
    text-align: center;
}

@media print {
    .print td {
        width: 8cm;
        height: 6cm;
    }
}