body {
    background-color: #242433 !important;
}

.container {
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(7, 7, 7, 0.99);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.form-group {
    margin-bottom: 1.5rem;
}

.table {
    margin-bottom: 0;
}

.table th {
    text-align: center;
    font-weight: bold;
    vertical-align: middle;
}

.table td {
    text-align: center;
    vertical-align: middle;
}

.alert {
    margin-top: 1.5rem;
}

h2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
#tabela-container {
    display: grid;
}

html, body {
    height: 100%;
}

.logo{
    height: 30px;
}

.tableFixHead thead th{
    position: sticky; /* make the table heads sticky */
    top: -1px; /* table head will be placed from the top of the table and sticks to it */

}

#pd-disponiveis{
    height: 400px ;
    padding: 10%;

}

table {
    border-collapse: collapse; /* make the table borders collapse to each other */
    /* width: 100%; */
    padding: 15px;
    overflow: scroll;
}

tr {
    margin: 10px;
}

th {
    background: #ffffff;
}
.pageiter {
    display: inline-block; /* ou display: flex; */
}

a {
    text-decoration: solid;
}

.ui-autocomplete {
    max-height: 150px; /* Altura máxima da caixa de sugestões */
    max-width: fit-content;
    overflow-y: auto;  /* Adiciona barra de rolagem vertical */
    overflow-x: hidden; /* Esconde a barra de rolagem horizontal */
    background-color: #f9f9f9; /* Fundo da caixa de sugestões */
    border: 1px solid #ddd; /* Borda da caixa de sugestões */
    z-index: 1050; /* Z-index para sobrepor elementos */
    list-style: none;
  }

  .ui-menu-item {
    padding: 8px 12px; /* Espaçamento interno das opções */
    cursor: pointer; /* Cursor de ponteiro para opções */
  }

  .ui-menu-item:hover {
    background-color: #f0f0f0; /* Fundo da opção quando o mouse está sobre ela */
  }