.btn-gradient-kuning-biru {
  background: linear-gradient(to bottom right, #6dce97, #0469ad);
  color: white;
  border: none;
  padding: 0.375rem 0.75rem;
  border-radius: 0.360rem;
  font-weight: 550;
  font-size: 0.875rem; /* normal size */
  line-height: 1.25rem;
  transition: opacity 0.2s ease-in-out;
  align-items: center; /* memastikan konten tombol sejajar vertikal */
  height: 100%; /* menyesuaikan dengan elemen di sebelah */
}

.btn-gradient-kuning-biru:hover {
  opacity: 0.9;
  text-decoration: none;
  color: white;
}

.bg-gradient-tambah {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: linear-gradient(to bottom right, #6dce97, #0469ad);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 1000;
  font-size: 0.750rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: all 0.2s ease-in-out;
}

.bg-gradient-tambah:hover {
  opacity: 0.9;
  text-decoration: none;
  color: white; 
}

.bg-gradient-primary {
  background: linear-gradient(to bottom right, #6dce97, #0469ad)!important;;
}

.text-judul {
  background: linear-gradient(to bottom right, #51bd80, #043c62);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold; /* opsional */
}

.icon-sidebar {
  display: inline-block;
  color: #3d4453; /* Warna ikon saat tidak aktif */
  height: 2.5em;
  width: 2.5em;
  border-radius: 0.50rem; /* opsional untuk rounded icon box */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00000011 !important; /* Menambahkan !important */
}

/* Isi ikon mengikuti warna teks */
.icon-sidebar use,
.icon-sidebar path {
  fill: currentColor;
}

/* Aktif: gradient background + warna ikon jadi gelap */
.nav-link.active .icon-sidebar {
  background: linear-gradient(to bottom right, #6dce97, #0469ad);
  color: #ffffff; /* Jika ikon ingin putih di atas gradasi, atau ganti sesuai preferensi */
}

/* Default warna ikon */
.icon-stroke {
  stroke: #333333;
}

/* Warna ikon ketika aktif */
.nav-link.active .icon-stroke {
  stroke: #ffffffcc;
}

.btn-close-custom {
  background: none;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
}

.btn-close-custom:hover {
  background-color: rgba(255, 0, 0, 0.1);
  border-radius: 50%;
}

  .hidden {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
  }
  .visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
  }

  .fade-out {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
    transition: all 0.5s ease !important;
  }





