.custom-container {
  width: 80%;
  margin: auto;
}

.toggle .toggle {
  margin: 8px 0 0 !important;
}

.toggle-title {
  background-color: #f1f1f1; /* Light background for inactive */
  color: black !important; /* Text color when inactive */
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.toggle .toggle-title:before {
  transform: translateY(-50%) rotate(45deg) !important;
  transition: transform 0.3s;
}

.toggle.active .toggle-title:before {
  transform: rotate(135deg) !important;
}

/* Active state */
.toggle.active .toggle-title {
  color: white !important; /* Text color when active */
}

.toggle.active .toggle-title .icon {
  color: white; /* Icon color when active */
  transition: color 0.3s ease;
}

.toggle-content ul {
  list-style-type: none;
  padding-left: 0;
}

.nav-link-content {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}

.method {
  color: #ffc107;
  font-weight: bold;
}

.method.get {
  color: green;
}

.method.put {
  color: blue;
}

.method.delete {
  color: red;
}

.table-borderless > th,
td {
  text-align: left !important;
}

.table-borderless > thead {
  --bs-table-bg-type: #f2f2f2 !important;
}

/* CTA */
.temukan {
  background-color: #fbe9eb;
}

.temukan-content {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.btn-hub {
  min-width: 138px;
}

@media (max-width: 991px) {
  .temukan-content {
    width: 100%;
    padding-inline: 5%;
    flex-direction: column;
    text-align: center;
  }

  .btn-hub {
    min-width: 138px;
  }
}
