header div{
   margin: 30px;
}
header nav{
background-color: rgba(127, 255, 212, 0.158);
border-bottom: 2px solid #f1f1f158;
display: flex;
flex-wrap: wrap;
flex-direction: row;
justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  left:0;
}
.right button{
   border-radius: 15%;
   border-style: none;
   margin-right: 5px;
    font-size: large;
}
.searchbar{
   justify-self: center;
   align-self: center;
   height:90%;
   width: 50vh;
   font-size: 16px;
   padding: 5px 10px;
   border-radius: 20px;
   margin-top: 0;
   outline: none;
   transition: width 0.3s, border-color 0.3s;
}
.searchbar:focus {
  width: 60vh;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
ul{
   margin:0;
   padding: 0;
   text-align: center;
}
#inn{
   opacity: 0.5;
   position: absolute;
   width: 40px;
   padding: 0;
   margin: 0;
   pointer-events: none;
}
#innB{
height: 90%;   
}
#enter{
   width: 15px;
   background: 100% url(../../Images/enter.png);
}
nav button:hover{
   cursor:pointer;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: 50%/cover url(../../Images/Las_bellas_secondas.png);
  padding: 20px;
}

table {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background: #2c3e50;
  color: white;
  position: relative;
  cursor: pointer;
  user-select: none;
}

th:hover {
  background: #34495e;
}
td:nth-child(odd){
  background:rgba(169, 168, 170, 0.4);
}
th:nth-child(odd){
  background:#36516d;
}

.sort-arrow {
  margin-left: 6px;
  font-size: 14px;
  opacity: 0.7;
  display: none;
}

.sort-arrow.visible {
  display: inline;
}

/* Estilo das tags */
.tags-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  min-height: 28px; /* evita layout shift */
}

.tag {
  display: inline-block;
  background: #e1f5fe;
  color: #0288d1;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 13px;
  white-space: nowrap;
}

.more-tags {
  color: #666;
  cursor: pointer;
  font-size: 13px;
  padding: 2px 6px;
  user-select: none;
}

.more-tags:hover {
  text-decoration: underline;
}
.tag--dead {
  background: #111111;
  color: #ffffff;
  border: 1px solid #000000;
}
.tag--NWK {
  background: #464646;
  color: #cacaca;
  border: 1px solid #1b1b1b;
}
.search-container {
  margin: 20px 0;
  text-align: center;
}

#global-search {
  width: 90%;
  max-width: 600px;
  padding: 10px 16px;
  font-size: 16px;
  border: 2px solid #2c3e50;
  border-radius: 24px;
  outline: none;
  transition: border-color 0.3s;
}

#global-search:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* Mensagem quando não há resultados */
.no-results {
  text-align: center;
  padding: 40px;
  color: #7f8c8d;
  font-style: italic;
}
.section {
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      margin-bottom: 20px;
      overflow: hidden;
    }

    .section-header {
      display: flex;
      align-items: center;
      padding: 16px;
      cursor: pointer;
      background-color: #007bff;
      color: white;
    }

    .section-header img {
      width: 50px;
      height: 50px;
      border-radius: 4px;
      margin-right: 16px;
      object-fit: cover;
    }

    .section-toggle {
      display: none; /* esconde o checkbox */
    }

    .section-content {
      padding: 0 16px;
      max-height: 0;
      overflow: hidden;
      background-color: #f1f8ff;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    /* Mostra o conteúdo quando checkbox está marcado */
    .section-toggle:checked ~ .section-content {
      padding: 16px;
      max-height: 1700px; 
    }

    .arrow::after {
      content: '▼';
      margin-left: 8px;
      transition: transform 0.3s;
    }

    .section-toggle:checked ~ .section-header .arrow::after {
      transform: rotate(180deg);
    }
    .section section{
      border-bottom: 2px solid rgb(84, 192, 192);
    }
    .PassiveTittle{
    background: #787878;
    background: linear-gradient(90deg, rgba(120, 120, 120, 0.52) 0%, rgba(47, 194, 191, 1) 51%, rgba(120, 120, 120, 0.5) 100%);
    text-align: center;
    }
    .Logbutton{
      padding: 10px;
      font-family: "Rubik Glitch", system-ui;
    font-weight: 400;
    font-style: normal;
    border-radius: 15px;
    border: 2px solid #000000;
    background-color: #5c5a68;
    }
    .Logbutton:hover{
      cursor: pointer;
    }
    .section-content img{
  display: block;
  margin: auto;
    }
#InText{
  color: white;
  font-weight: 600;
}