/* Sidebar layout */
.sidebar {
  position: fixed;
  top: 0;
  left: -220px;
  width: 200px;
  height: 100%;
  background-color: #ffeaa7;
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  transition: left 0.3s ease;
  z-index: 1000;
}

.sidebar.open {
  left: 0;
}

.sidebar h2 {
  margin-top: 0;
  font-size: 1.2rem;
}

.sidebar a {
  display: block;
  margin: 10px 0;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.sidebar a.active {
  color: #d63031;
  text-decoration: underline;
}

/* Toggle button */
.toggle-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  background-color: #ff7675;
  color: white;
  border: none;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 1100;
}

/* Responsive layout adjustment */
@media screen and (max-width: 768px) {
  .container {
    margin-left: 0 !important;
    padding-top: 60px;
  }
}

@media screen and (min-width: 769px) {
  .container {
    margin-left: 220px;
  }
}
