/* Layout utama */
/* .layout {
  margin: 0;
  display: flex;
  height: 100vh;
  font-family: Arial, sans-serif;
} */

/* Sidebar */
.sidebar {
  width: 260px;
  background: #2a3a53;
  color: white;
  padding: 25px;
  transition: 0.3s ease;
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.sidebar a {
  display: block;
  color: white;
  text-decoration: none;
}

.logo {
  font-size: 32px;
  margin-bottom: 40px;
  margin-top: 50px;
}

.menu {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.menu li {
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.2s;
}

.menu li:hover,
.menu li.active {
  background: #334155;
}

/* Content area */
/* .content {
  flex-grow: 1;
  padding: 40px;
} */

/* Tombol toggle */
.toggle-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
}
.toggle-btn:hover {
  opacity: 1;
}

/* Sidebar hide */
.sidebar.hide {
  width: 0;
  padding: 0;
  overflow: hidden;
}

.sidebar.hide .toggle-btn {
  color: black;
}

