/* style.css */
body,
html {
  margin: 0;
  padding: 0;
  /* height: 100%; */
}

.container {
  display: flex;
  flex-wrap: wrap;
  /* height: 100%; */
  max-width: 1200px;
  margin: 0 auto;
}

.sidebar {
  flex: 1;
  background-color: #f4f4f4;
  min-width: 250px;
  height: 100vh;
  overflow-y: auto;
  /* Enables scrolling on the sidebar if needed */
  box-sizing: border-box;
  padding: 20px;
}

.content {
  flex: 3;
  height: 100vh;
  overflow-y: scroll;
  padding: 20px;
  box-sizing: border-box;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .sidebar {
    height: auto;
    position: relative;
    width: 100%;
    display: block;
    overflow-y: visible;
  }

  .content {
    flex-basis: 100%;
    height: calc(100vh - 120px);
    /* Adjust based on your sidebar's actual height */
  }
}
