.shopping-lists-v1 {
  margin: 0 0 20px;
  padding: 16px;
  background: #fffdf9;
  border: 1px solid rgba(49, 84, 58, .14);
  border-radius: 16px;
}

.shopping-lists-v1-main {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  justify-content: space-between;
}

.shopping-lists-v1-select-wrap {
  flex: 1;
  min-width: 0;
}

.shopping-lists-v1-select-wrap label {
  display: block;
  margin-bottom: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: #59645b;
}

#shopping-lists-v1-select {
  width: 100%;
  min-height: 44px;
  padding: 0 38px 0 12px;
  border: 1px solid rgba(49, 84, 58, .22);
  border-radius: 11px;
  background: white;
  color: #293129;
  font: inherit;
}

.shopping-lists-v1-meta {
  margin-top: 6px;
  font-size: .8rem;
  color: #7a837b;
}

.shopping-lists-v1-actions {
  display: flex;
  gap: 8px;
}

.shopping-lists-v1-actions button {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 11px;
  background: #4f7c58;
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.shopping-lists-v1-actions button.is-secondary {
  background: transparent;
  color: #31543a;
  border: 1px solid rgba(49, 84, 58, .25);
}

.shopping-lists-v1-message {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: .86rem;
  background: #faf7f0;
}

.shopping-lists-v1-message[data-type="success"] {
  color: #31543a;
}

.shopping-lists-v1-message[data-type="error"] {
  color: #a84936;
}

@media (max-width: 620px) {
  .shopping-lists-v1-main {
    align-items: stretch;
    flex-direction: column;
  }

  .shopping-lists-v1-actions {
    width: 100%;
  }

  .shopping-lists-v1-actions button {
    flex: 1;
  }
}

.shopping-lists-v1-actions button.is-danger {
  background: transparent;
  color: #a84936;
  border: 1px solid rgba(168, 73, 54, .28);
}

.shopping-lists-v1-actions button.is-danger:hover {
  background: rgba(168, 73, 54, .06);
}
