/* Estilos Gerais e Padrões em todas as paginas de cadastros */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f7fb;
  color: #333;
  margin: 0;
  padding: 0;
}

.cadastro_form_style,
.container-padrão_con {
  background-color: white;
  padding: 1rem;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 2rem auto;
  max-width: 75rem;
  border-top: 4px solid #082464
}

h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #002060;
  text-align: center;
  margin-bottom: 3rem;
}



.form-control:focus {
  border-color: #2c8c40;
  box-shadow: 0 0 8px rgba(44, 140, 64, 0.3);
  outline: none;
}

.form-label {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.5rem;
}

/* Botão de Cadastro */

.continue-application {
  background-color: #0056b3;
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1rem 3rem;
  border-radius: 30px;
  display: block;
  margin: 2rem auto;
  min-width: 220px;
  height: 50px;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-align: center;
  line-height: 17px;

}

.continue-application:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.continue-application:active {
  background-color: #004085;
  transform: translateY(1px);
}

.continue-application svg {
  fill: white;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Tabelas e Dados */
.table_responsive {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
}

.table_responsive th,
.table_responsive td {
  padding: 1.2rem;
  text-align: left;
  border: 1px solid #e3e3e3;
}


.table_responsive tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table_responsive tbody tr:hover {
  background-color: #f1f1f1;
}

.empty-table-message {
  text-align: center;
  color: #888;
  font-size: 1.2rem;
  margin-top: 3rem;
}

.empty-table-message strong {
  color: #444;
  font-weight: 700;

}


/* Notificação de Preenchimento */
.alerta-preenchimento {
  display: none;
  background-color: #f8f9fa;
  color: #343a40;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsividade */
@media (max-width: 768px) {

  h2 {
    font-size: 1.5rem;
  }

  .form-control {
    padding: 0.8rem;
  }

  .continue-application {
    min-width: 180px;
    font-size: 1rem;
  }

  .table_responsive {
    font-size: 1rem;
  }
}

/* Estilo*/
.con_tabela {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.con_tabela table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 6px rgba(58, 58, 58, 0.1);
}

.con_tabela th,
.con_tabela td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.con_tabela th {
  background-color: #f8f9fa;
  font-weight: bold;
  text-transform: uppercase;
}

.con_tabela tbody tr:hover {
  background-color: #f2f2f2;
  cursor: pointer;
}


.dt-buttons {
  margin-bottom: 15px;
}

.dt-button {
  background-color: #142c4c !important;
  color: white !important;
  border: none;
  padding: 6px 10px; /* um pouco menor */
  border-radius: 12px!important;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 12px!important;
}

.dt-button:hover {
  background-color: #0080b3 !important;
}

/* Estilo do campo de pesquisa */
.dataTables_filter input {
  width: 300px;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 30px;
  border: 2px solid #007bff;
  background-color: #f0f8ff;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.dataTables_filter input:focus {
  border-color: #007bff;
  outline: none;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
  transform: scale(1.05);

}


.dataTables_filter input::placeholder {
  color: #007bff;
  font-style: italic;
}


.dataTables_filter label {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  margin-right: 15px;
  text-transform: uppercase;
}


.dt-button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (max-width: 800px) {
  .tablet-hide {
    display: none;
  }

  .tablet-space {
    padding: 3em 0em !important;
  }

  .table-responsive {
    table-layout: fixed;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.table_respon {
  table-layout: auto;
  width: 100%;
  /* Garantir que a tabela ocupe 100% da largura disponível */
}

@media only screen and (max-width: 250px) {
  .tablet_programacao_vision {
    display: none;
  }

  .tablet_programacao_space {
    padding: 3em 0em !important;
  }

  .table_respon {
    table-layout: fixed;
    width: 100%;
  }
}

.table_respon {
  background-color: white;
  padding: 1rem;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 1rem auto;
  max-width: 60rem;
  border-top: 4px solid #082464;
  transition: all 0.3s ease;
  /* Transição suave ao passar o mouse */
}

.table_respon:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  /* Aumenta a sombra no hover */
}

.table_respon th,
.table_respon td {
  padding: 10px 15px;
  /* Um pouco mais de espaçamento nas células */
  text-align: center;
}

.table_respon th {
  background-color: #f8f9fa;
  /* Cor de fundo suave para os cabeçalhos */
  font-weight: bold;
}

.table_respon tbody tr:hover {
  background-color: #f1f1f1;
  /* Destacar a linha ao passar o mouse */
}

.table_respon td {
  background-color: #fff;
  /* Fundo branco para as células */
}

.table_respon thead {
  background-color: #e9ecef;
  /* Cor suave para os cabeçalhos */
}