.header-logado {
    box-sizing: border-box;
    width: 100%;
    background: #ffffff;
    padding: 10px 100px;
    display: flex; /* corrigido */
    align-items: center;
    justify-content: space-between; /* separa logo e links */
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #f15a24; /* opcional: cor da marca */
}

.logo img {
    height: 40px; /* ou o tamanho que quiser */
}

.nav-links-logado {
    display: flex;
    text-decoration: none;
    gap: 20px;
    font-weight: bold;
    color: #f15a24;
}

.nav-links-logado a {
    padding: 10px 10px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    color: rgb(237, 103, 44);
    transition: all 0.2s ease-in-out;
    border: 0px solid;
}

.nav-links-logado a:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.1), inset 0 0 4px rgba(255,255,255,0.6);
}


.nav-links-logado a:active {
    transform: scale(0.98);
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
}

.hero-logado{
    background-color: #f3f3f3;
}

.tabela-container {
  overflow-x: auto;
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filtro-opcoes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

#table-search {
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.dropdown-opcoes {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border-radius: 0.25rem;
  z-index: 10;
}

.dropdown-opcoes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-opcoes li {
  margin: 0.5rem 0;
}

.tabela-dados {
  width: 100%;
  border-collapse: collapse;
}

.tabela-dados thead {
  background: #f9fafb;
  font-weight: bold;
}

.tabela-dados th,
.tabela-dados td {
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.tabela-dados tbody tr:hover {
  background-color: #f1f5f9;
}


