.list-panel {
  position: fixed;
  top: 4rem;
  right: 0;
  bottom: 0;
  width: 400px;
  background-color: #33231a;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 3800;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: 100px;
}

.list-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1.5rem;
}

.list-panel-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

.list-panel-content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}