 /* Style for custom tab navigation */

 .nav-tabs {
    border-bottom: none;
}
/* Style for custom tab navigation */
nav {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

nav button.nav-link {
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  margin: 0 5px;
  background-color: transparent;
  /* color: #ffffff; */
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  white-space: normal; /* Memastikan teks dapat memenuhi lebar tombol tab */
  text-align: center; /* Pusatkan teks di dalam tombol tab */
}

nav button.nav-link.active {
  /* color: #fff; */
  background-color: #007bff;
  border-color: #007bff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

nav button.nav-link:not(.active):hover {
  /* color: #fff; */
  background-color: #6c757d;
  border-color: #6c757d;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Style for tab content */
.tab-content {
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.tab-pane {
  display: none;
  padding: 15px 0;
}

.tab-pane.active {
  display: block;
}

/* Media Query for mobile devices */
@media (max-width: 767px) {
  #nav-tabs {
    flex-direction: column;
    align-items: center;
  }

  #nav-tabs button.nav-link {
    display: block;
    margin: 5px 0;
    width: 100%; /* Menentukan lebar tombol tab menjadi 100% */
  }
}
