/* Cosa Cena v2 -- Saved and Made It screen styles */

.saved-screen {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-bottom: 5rem;
}

/* ── Segment bar + sort row ──────────────────────────────────────────────── */

.saved-header {
  padding: 1.25rem 1rem 0;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 1rem;
}

.saved-segment-bar {
  flex: 1;
  display: flex;
  gap: 0;
  background: var(--sand);
  border-radius: 12px;
  padding: 3px;
}

.saved-seg-btn {
  flex: 1;
  padding: 0.55rem 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.saved-seg-btn.active {
  background: var(--terracotta);
  color: var(--cream);
  font-weight: 600;
}

/* ── Sort button ─────────────────────────────────────────────────────────── */

.saved-sort-btn {
  background: none;
  border: 1px solid var(--sand-mid);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  padding: 6px 10px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}

.saved-sort-btn:active { opacity: 0.7; }

/* ── List ────────────────────────────────────────────────────────────────── */

.saved-list {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Made It remove button (X) ───────────────────────────────────────────── */

.card-madeit-remove {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--muted);
  padding: 0;
  min-height: 44px;
  min-width: 44px;
  -webkit-tap-highlight-color: transparent;
}

.card-madeit-remove:active { color: var(--terracotta); }

.card-madeit-remove svg {
  width: 16px;
  height: 16px;
}

/* ── Cooked timestamp meta ───────────────────────────────────────────────── */

.saved-cooked-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive);
}

/* ── Card-actions alignment (single button: center it) ───────────────────── */

.saved-screen .card-actions {
  justify-content: center;
}
