body {
  /* overflow: hidden;
    height: 100%;
  min-height: -webkit-fill-available; */
  font-family: Arial, sans-serif;
}

html {
  /* height: 100vh;
  margin: 0;
  padding: 0;
  height: -webkit-fill-available; */
  font-size: clamp(10px, 1vw, 12px);
}
.footer {
  grid-area: footer;
  margin: 0px 0px 0px 0px !important;
  padding: 0px 0px 0px 0px !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.05);
  width: 100% !important;
  height: 60px;
}
table {
  font-size: clamp(10px, 1vw, 12px);
  border-collapse: collapse;
  width: 100%;
}

/* .main {
  height: 100vh;
  height: -webkit-fill-available;
  max-height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
} */

.dropdown-toggle {
  outline: 0;
}

.btn-toggle {
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: var(--bs-emphasis-color);
  background-color: transparent;
}
.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(var(--bs-emphasis-color-rgb), 0.85);
  background-color: var(--bs-tertiary-bg);
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform 0.35s ease;
  transform-origin: 0.5em 50%;
}

[data-bs-theme="dark"] .btn-toggle::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%28255,255,255,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(var(--bs-emphasis-color-rgb), 0.85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  padding: 0.1875rem 0.5rem;
  margin-top: 0.125rem;
  margin-left: 1.25rem;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: var(--bs-tertiary-bg);
}

.scrollarea {
  overflow-y: auto;
}

.subNovoMenu {
  height: 100vh; /* Ocupa toda a altura da tela */
  width: 210px; /* Largura fixa do menu */
  position: fixed; /* Mantém fixo na tela */
  top: 0;
  left: 0;
  background-color: #343a40; /* Cor de fundo */
  color: white;
  padding: 10px;
  border-right: 1px solid #343a40;
}

.novoMenu {
  margin-left: 10px; /* Deve ser maior que a largura do menu */
  height: 100vh;
  width: calc(100% - 10px); /* Calcula o espaço restante */
  overflow-y: auto; /* Ativa rolagem apenas aqui */
  padding: 20px;
  /* display: flex;
    flex-direction: column;
    overflow: hidden;  Evita rolagem geral 
    padding: 10px;*/
}

/* Responsividade - Recolhe o menu em telas menores */
@media (max-width: 768px) {
  .subNovoMenu {
    width: 60px; /* Diminui o menu */
  }

  .novoMenu {
    margin-left: 10px; /* Ajusta o conteúdo */
    width: calc(100% - 10px);
  }
}

/* Permite rolagem apenas na tabela */
.tabela-container {
  flex-grow: 1; /* Ocupa todo o espaço restante */
  overflow-y: auto; /* Habilita rolagem vertical */
  padding-bottom: 20px; /* Evita sobreposição com a paginação */
}
.table tbody tr.highlight td {
  background-color: #717070;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.4); /* Sombra para efeito 3D */
}
.tabela tbody tr.highlight td {
  background-color: #717070;
  border: 1px solid #fffbfb;
}

.remover-filtro {
  cursor: pointer;
  color: red;
  font-weight: bold;
  border: none;
  background: none;
  margin-left: 7px;
}
.remover-painel {
  cursor: pointer;
  color: red;
  font-weight: bold;
  border: none;
  background: none;
  margin-left: 7px;
}

.text-red {
  color: red !important;
}

.text-green {
  color: rgb(40, 130, 58) !important;
}

.text-orange {
  color: rgb(208, 123, 4) !important;
}

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999 !important; /* Maior que o do modal */
}

.overlayTable {
  background-color: #ffffffb1 !important; /* Cor similar ao aviso, com transparência */
  color: #721c25 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: bold;
  z-index: 2;
  pointer-events: none; /* Permite que a camada não bloqueie outros eventos */
}

#NavMenu {
  /* width: 3.5rem !important; */
}
.filtro-fixo {
  margin: 0px, 0px, 0px, 0px;
  padding: 0px, 0px, 0px, 0px;
}

.display-none {
  display: none !important;
}

#bd-theme {
  display: flex;
  gap: 4px;
}

.f-300 {
  width: 300px;
}

.f-100 {
  width: 100px;
}

.f-200 {
  width: 200px;
}
.header-usuario {
  display: flex;
  flex-direction: row;
  align-items: center;
   gap:10px;
  justify-content: baseline;
  margin-bottom: 10px;
  margin-right: 10px;
  font-size: 0.85rem;

}
