.centralizaPagina {
    max-width: 95%;
    width: 95%;
    margin: 0 auto;
}

.linha-preta {
    width: 100%;
    /* Largura total */
    height: 30px;
    /* Altura da linha */
    background-color: black;
    /* Cor preta */
    margin: 20px 0;
    /* Espaçamento acima e abaixo */
}

.cor_branca {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

.textoalinhadoaDireita {
    text-align: right;
    /* Aligns the text to the right edge of its container */
}

.textoalinhadoaoCentro {
    text-align: center;
    /* Aligns the text to the right edge of its container */
}

.nav-container {
    display: flex;
    justify-content: center;
    /* Centers items horizontally */
    list-style: none;
    /* Removes default list bullets */
    padding: 0;
    margin: 0;
}

.my-navbar a {
    font-size: 20px;
    /* Or use relative units like 1.25rem, 1.2em, etc. */
    color: black;
    /* Example: a shade of blue */
}

.custom-button {
    background-color: red;
    /* Green background */
    border: none;
    color: white;
    /* White text */
    padding: 15px 32px;
    /* Some padding */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    /* Mouse pointer on hover */
    border-radius: 8px;
    /* Rounded corners */
}

.custom-button-blue {
    background-color: blue;
    /* Green background */
    border: none;
    color: white;
    /* White text */
    padding: 15px 32px;
    /* Some padding */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    /* Mouse pointer on hover */
    border-radius: 8px;
    /* Rounded corners */
}

.custom-button-green {
    background-color: green;
    /* Green background */
    border: none;
    color: white;
    /* White text */
    padding: 15px 32px;
    /* Some padding */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    /* Mouse pointer on hover */
    border-radius: 8px;
    /* Rounded corners */
}

.custom-button-brown {
    background-color: brown;
    /* Green background */
    border: none;
    color: white;
    /* White text */
    padding: 15px 32px;
    /* Some padding */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    /* Mouse pointer on hover */
    border-radius: 8px;
    /* Rounded corners */
}

.custom-button-purple {
    background-color: purple;
    /* Green background */
    border: none;
    color: white;
    /* White text */
    padding: 15px 32px;
    /* Some padding */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    /* Mouse pointer on hover */
    border-radius: 8px;
    /* Rounded corners */
}

.ImagemCenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    /* Optional: set a width smaller than the page width */
}

.Imagem-sized-image {
    width: 200px;
    /* Set a specific width */
    height: 250px;
    /* Height adjusts automatically to maintain aspect ratio */
}

.centerTable {
    margin: 0px auto;
}

td {
    text-align: center;
    vertical-align: middle;
}

hr.thick {
    border: none;
    /* Remove default border */
    height: 5px;
    /* Set the thickness (height) */
    background-color: #333;
    /* Set the color */
}

.left-row td,
.left-row th {
    text-align: left;
}

.right-row td,
.right-row th {
    text-align: right;
}

textarea {
    height: 200px;
    width: 90%;
}
.align-right {
  text-align: right;
}

.flex-container {
  display: flex;
  justify-content: flex-end; /* Aligns content to the right */
  align-items: center; /* Vertically centers items in the cell */
  gap: 10px; /* Adds space between items */
}

.large-input,
.large-button {
    padding: 15px 25px;
    /* Aumenta o espaço interno */
    font-size: 1.2rem;
    /* Aumenta o tamanho do texto */
    border-radius: 8px;
    /* Deixa os cantos arredondados */
    border: 1px solid #ccc;
}

  .large-button {
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    border: none;
  }