.bootstrap-tabs {
  width: 100%;
  min-height: 100px;
  background: transparent;
  border: none;
  padding: 0;
}
.bootstrap-tabs .nav-link {
  font-family: "notesesa", sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  background: var(--bg-color, #6c757d);
  border-radius: 6.1875rem;
  border: 1px solid #ffffff66;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  text-decoration: none;
}
.bootstrap-tabs .nav-link.active {
  background: var(--bg-color, #6c757d);
  color: #fff;
  border: 1px solid var(--pure-teal, #00b3b0);
}
.bootstrap-tabs .nav-tabs {
  margin: 0 0 2rem 0;
  border-bottom: 0;
  gap: 1rem;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

/* Assicurati che i tab pane siano visibili quando attivi */
.bootstrap-tabs .tab-pane {
  display: none;
  padding: 20px;
  background: transparent;
  border: none;
  min-height: 50px;
  margin-top: 1.5rem;
}
.bootstrap-tabs .tab-pane.show.active {
  display: block;
}

/* Stile per il contenitore del contenuto delle schede */
.bootstrap-tabs .tab-content-container {
  margin-top: 20px;
}

/* Assicurati che i blocchi interni abbiano il giusto layout */
.bootstrap-tabs .tab-pane > * {
  margin-bottom: 1rem;
}
