* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #0f0f0f;
  color: #fff;
  display: flex;
  height: 100vh;
}

/* SIDEBAR */
#sidebar {
  width: 280px;
  background: #151515;
  padding: 16px;
  overflow-y: auto;
  border-right: 1px solid #222;
}

#sidebar h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

#memberList {
  list-style: none;
  padding: 0;
  margin: 0;
}

#memberList li {
  padding: 10px 12px;
  margin-bottom: 8px;
  background: #1e1e1e;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#memberList li:hover {
  background: #2a2a2a;
}

.status {
  font-size: 12px;
  color: #ff3b3b;
  font-weight: bold;
}

/* PLAYER */
#player {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

iframe {
  width: 100%;
  height: 70vh;
  border-radius: 12px;
  background: #000;
}

#toggleSidebar {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  background: #ff2e63;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 18px;
  cursor: pointer;
}

/* animasi sidebar */
#sidebar {
  transition: transform 0.3s ease;
}

/* kondisi ditutup */
#sidebar.closed {
  transform: translateX(-100%);
}

/* player full kalau sidebar ditutup */
#sidebar.closed + #player {
  margin-left: 0;
}
