@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

    /* CSS adicional para alinhar os elementos no centro */
    body {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      background-color: #333333;
    }

    .search-wrapper {
      background-color: #ffffff;
      display: flex;
      flex-direction: column;
      padding: 160px;
      border-radius: 20px;
      height: 100vh;
    }

    .btn-warning {
      margin-top: 10px;
      color: white;
      background-color: #333333;
      border: none;
      transition: .5s ease-in-out;
      padding: 12px 0;
      font-weight: 600;
    }


    .btn-warning:hover {
      color: #333333;
      background-color: #f7d935;
    }

    .btn-custom {
      background-color: #f7d935;
      color: #333;
    }

    .btn-custom:hover {
      background-color: #333333;
      color: white;
    }

    .btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show>.btn-warning.dropdown-toggle  {
      border: none;
      outline: none;
      box-shadow: none;
      background-color: #7133d3 !important;
    }

    .btn-warning.focus, .btn-warning:focus {
      box-shadow: none !;
      border: none;
    }

    h1 {
      font-size: 30px;
      font-weight: 700;
      color: #333333;
    }

    select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: url(../images/select-angle-down.png) no-repeat center right #FFF;
        border: 1px solid #333;
        font-size: 15px;
        padding-right: 20px;
    }

    select:hover {
        cursor: pointer;
    }

    /* Aplicar algumas margens para deixar mais espaçado e organizado */
.modal-content {
  padding: 15px;
  overflow: auto;
}

.ui-resizable-se {
  bottom: -16px;
  right: -16px;
}

/* Deixar a tabela mais limpa e com linhas mais visíveis */
.modal-body table {
  width: 100%;
  margin-top: 15px;
  border-collapse: collapse;
  table-layout: auto; /* As colunas serão dimensionadas de acordo com o conteúdo */
  word-wrap: break-word; /* Quebra de palavras para evitar que a tabela exceda o tamanho da tela */
}

.modal-body table th,
.modal-body table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  font-size: 0.9rem; /* Reduzindo o tamanho da fonte */
}

.modal-body table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.modal-body table tr:hover {
  background-color: #ddd;
}

.modal-body table th {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #4CAF50;
  color: white;
}

/* Estilizando a mensagem de erro */
.modal-body p {
  color: red;
}

/* Deixando o botão fechar mais clean */
.modal-footer .btn-outline-secondary {
  border: none;
}

