.menu-screen,
.list-screen {
  background: var(--white200);
}

.menu-screen__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  height: 100%;
}

.nav-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.nav-panel__top {
  display: grid;
  gap: var(--space-2);
}

.nav-panel__eyebrow {
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray200);
}

.nav-panel__account {
  border-radius: var(--space-4);
}

.lists-panel__body {
  flex: 1;
  min-height: 0;
  padding-bottom: 100px;
  overflow: auto;
  background: var(--white100);
}

.lists-panel__import-btn {
  width: calc(100% - (var(--space-4) * 2));
  margin: var(--space-4);
}

.list-edit-row {
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  padding: var(--space-3);
  align-items: center;
  cursor: grab;
}

.list-edit-row.is-dragging {
  opacity: 0.6;
}

.list-edit-handle {
  display: none;
}

.list-edit-controls {
  display: flex;
}

.cell-list {
  display: flex;
  flex-direction: column;
}

.cell,
.list-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: var(--space-3) var(--space-4);
  background: none;
  border-bottom: 0.5px solid var(--black025);
  gap: var(--space-1);
  color: var(--black100);
}

.island-cell{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3) var(--space-4);
  max-height: 54px;
  border-bottom: 0.5px solid var(--black025);
}

.island-cell:last-child{
  border-bottom: none;
}

.list-card__title{
  font-weight: 600;
  color: var(--black100);
}

.list-card__meta{
  opacity: 0.5;
}

.cell:last-child,
.list-card:last-child {
  border-bottom: none;
}

.cell_chevron {
  width: var(--space-5);
  height: var(--space-5);
}

.toolbar-menu-actions,
.toolbar-list-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
}

.toolbar-menu-actions > .hstack,
.toolbar-list-actions > .hstack {
  flex: 1;
}
