/* Layout dasar */
.wrapper {
  display: flex;
  min-height: 100vh;
}

/* Sidebar – sangat sederhana */
.sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 1.5rem 1rem;
  background: #fff;
  border-right: 1px solid #ccc;
  overflow-y: auto;
}

.sidebar h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ddd;
}

.sidebar h2 a {
  color: #000;
  text-decoration: none;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  margin-bottom: 0.15rem;
}

.sidebar a {
  display: block;
  padding: 0.3rem 0.5rem;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Tidak ada hover background, hanya underline */
.sidebar a:hover {
  text-decoration: underline;
  color: #000;
}

.sidebar a.active {
  font-weight: 700;
  color: #000;
  text-decoration: underline;
}

/* Konten utama – polos */
.content {
  flex: 1;
  padding: 1.5rem 2rem;
  background: #fff;
}

/* Responsif – tetap berfungsi */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding: 1rem;
  }

  .content {
    padding: 1rem;
  }
}