/* experimental/users/acmcarther/elaina-show-tracker/frontend/src/style.css */
:root {
  --bg: #fef9f0;
  --surface: #ffffff;
  --border: #e8d5b7;
  --text: #3d2e1e;
  --text-dim: #8a7060;
  --accent: #e07b39;
  --accent2: #5c8fa8;
  --ok: #4caf7d;
  --warn: #e09030;
  --err: #c94040;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family:
    "Nunito",
    "Segoe UI",
    system-ui,
    sans-serif;
  font-size: 15px;
  min-height: 100vh;
}
a {
  color: var(--accent);
}
.header {
  background: var(--accent);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.header-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.header-sub {
  font-size: 0.85rem;
  opacity: 0.85;
}
.main {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.panel-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.panel-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover:not(:disabled) {
  filter: brightness(1.1);
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn-secondary {
  background: transparent;
  color: var(--accent2);
  border: 1.5px solid var(--accent2);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.btn-secondary:hover:not(:disabled) {
  background: #e8f4fb;
}
.btn-secondary:disabled {
  opacity: 0.5;
  cursor: default;
}
.btn-remove {
  background: transparent;
  color: var(--err);
  border: 1.5px solid var(--err);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-remove:hover {
  background: #fdf0f0;
}
.genre-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  vertical-align: middle;
  margin-left: 6px;
}
.genre-tag {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  background: #f0e8dc;
  color: #7a5c40;
  border: 1px solid #d9c9b4;
}
.search-row {
  display: flex;
  gap: 8px;
}
.search-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.95rem;
  color: var(--text);
  background: #fffdf8;
  outline: none;
}
.search-input:focus {
  border-color: var(--accent);
}
.result-list,
.show-list,
.episode-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.result-item,
.show-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffcf7;
}
.show-thumb {
  width: 48px;
  height: 68px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.result-info,
.show-info {
  flex: 1;
  min-width: 0;
}
.result-name,
.show-name {
  font-weight: 700;
  font-size: 0.95rem;
}
.result-summary,
.show-summary {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.episode-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fffcf7;
}
.episode-date {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 80px;
  padding-top: 2px;
}
.episode-info {
  flex: 1;
  min-width: 0;
}
.episode-title {
  font-size: 0.9rem;
  font-weight: 600;
}
.episode-show {
  color: var(--accent2);
}
.episode-summary {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 3px;
}
.empty {
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 8px 0;
}
.error-msg {
  color: var(--err);
  font-size: 0.85rem;
  background: #fdecea;
  border: 1px solid #f5baba;
  border-radius: 6px;
  padding: 8px 12px;
}
/*# sourceMappingURL=bundle.css.map */
