[class^="btn-"] {
  margin: 5px;
  padding: 15px 25px;
  display: inline;
  border: none;
}
.container-inner {
  max-width: 980px;
  margin: auto;
}
.secteur-buttons button {
  font-weight: 600;
}
.title {
  font-size: 18px;
}
.title-cat, .sub-cat, .description {
  font-size: 14px;
}
.description {
  text-align: left;
}
.title-cat {
  background: var(--color-primary);
  color: white;
  padding: 8px;
}
.fiche-item {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  text-align: center;
  font-family: sans-serif;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 3fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 5px;
}
.btn-sub-toggle {
  padding: 12px 15px;
  margin: 0;
  color: black;
  background: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-primary.activer:after, .btn-primary.active:after {
  transform: translateX(0%);
}
.btn-sub-toggle .btn-text {
  flex-grow: 1;
  color: black;
  font-family: inherit;
  padding: 8px;
}
.btn-sub-toggle svg {
  transition: transform 0.3s ease;
  margin-left: 10px;
  /* To space the arrow from the text */
}
/* Rotate the arrow when the button is active */
.btn-sub-toggle.active svg {
  transform: rotate(180deg);
}
