html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #343A40;  // corpo geral
  color: #F8F9FA;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.wrapper > * {
  flex: 1;
}

.container_top {
min-width: 100%;
}

.center {
align-items: center
}

.titulo-main {
    color: white
}
.subtitulo {
    color: white
}

.titulo-tabela {
  color: white;
}

.tabela {
  background-color: #2C3034;
  width: 100%;
  border-radius: 10px;
  background: #C3034;
}

.head-tabela {
  color: white;
  border-radius: 2px;
}

.body-tabela {
  color: white;
}

.top-bar {
  width: 100%;
  height: 30%;
  background: #000;
}

.content-area {
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-bar {
  border-top: 5px solid #000;
}

.navbar {
  width: 100%;
  border-bottom: 5px solid #000;
  background-color: #212529 !important; /* força o bg */
  padding-left: 1rem;
  padding-right: 1rem;
}

.top-section {
  display: flex;
  flex-direction: column;
  gap: 10px; /* espaçamento entre barra e botão */
  padding: 10px 20px;
}

.search-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 0; /* controla quão perto do topo */
}

#search {
  width: 100%;
  max-width: 300px;
  padding: 15px 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  color: #333;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.btn-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: -50px;
}


.cadastrar-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #212529;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.cadastrar-btn:hover {
  background-color: #FD690D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.cadastrar-btn:active {
  background-color: #FD690D;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cadastros {
    background: #343A40;
}

.cadastro-interno {
    background: #343A40;
}

.form-label {
    color: white;
}

.tabela-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #212529;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tabela-button:hover {
  background-color: #FD690D;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.tabela-button:active {
  background-color: #FD690D;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.container_footer {
max-height: 6vh;
}

.login-form {
    background-color: #495057;
}

.toggle-btn {
    background-color: #212529;
    color: #fff;
    color: white;
    border: none;
}

.btn-check:checked + .toggle-btn {
    background-color: #FD690D;
    color: #fff
}