.folhetos-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

.folhetos-sidebar {
  width: 21%;
  background: #f3f3f3;
  padding: 20px;
  border-radius: 6px;
  font-family: "Acumion Pro", sans-serif !important;
}

.folhetos-sidebar h3 {
  color: #032B1A;
  font-family: "Lubrax Display";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  padding-bottom: 1rem;
}

.filtro-group {
  margin-bottom: 15px;
}

.filtro-group label {
  color: #004415;
  font-family: "Lubrax Display";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.5px;
  letter-spacing: 1px;
}

.filtro-group input,
.filtro-group select {
  width: 100%;
  padding: 0.5rem 1rem;
  background: #FFF;
  border: none;
  border-radius: 8px;
  font-size: 13.5px;
}

#busca::placeholder {
  color: #767676;
  font-size: 13.5px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn-filtrar {
  background: #004d26;
  color: white;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
}

.folhetos-tabela {
  flex-grow: 1;
  max-width: 100%;
}

.folhetos-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 3.75px;
  background: #F4F4F4;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: sans-serif;
}

.folhetos-header span {
  color: #5F6C72;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 400;
  text-align: start;
}

.folhetos-header span strong {
  color: #191C1F;
}

.folhetos-count {
  color: #5F6C72;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 400;
  text-align: end;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: #004d26;
  color: white;
}

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

.btn-baixar {
  background: white;
  border: 1px solid #004d26;
  color: #004d26;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
}

.btn-baixar:hover {
  background: #004d26;
  color: white;
}

.paginacao {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.paginacao-links a {
  margin: 0 4px;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
}

.paginacao-links a.ativo {
  background: #004d26;
  color: white;
  font-weight: bold;
  border-color: #004d26;
}


.tabela-fichas {
  border-radius: 8px;
  overflow: hidden;
  font-family: sans-serif;
  border: 1px solid #EAECF0;
}

.tabela-fichas table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.tabela-fichas thead {
  background-color: #0a3f13;
  color: white;
  font-family: 'Lubrax Display', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}

.tabela-fichas td {
  padding: 16px;
  font-family: Acumim PRO,sans-serif;
  font-size: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #EAECF0;
}

.tabela-fichas tbody tr {
  border-top: 1px solid #EAECF0;
}

.btn-baixar {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #0a3f13;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease-in-out;
  color: #004415;
  text-align: center;
  font-family: "Lubrax Display", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 13.5px;
  letter-spacing: 1px;
}

.btn-baixar:hover {
  background-color: #0a3f13;
  color: white;
}
th {
  border: 0;
}
td {
  border:5px;
  /* border-bottom: 1; */
}

@media (max-width: 767px) {
  .folhetos-container {
    flex-wrap: wrap !important;
  }

  .folhetos-sidebar {
    width: 100% !important;
  }

  .tabela-fichas {
    overflow-x: auto;
  }

  .tabela-fichas td {
    padding: 9px !important;
    white-space: nowrap;
  }
}