:root {
  --bg: #111;
  --fg: #f4f4f4;
  --muted: #bdbdbd;
  --accent: #ffcc66;
  --accent-2: #66ccff;
  --surface: #151515; /* panel / card background */
  --border: #242424; /* borders and subtle panels */
  --input-bg: #1a1a1a; /* inputs */
  --hover: #161616; /* row / element hover */
}

/* Light Mode */
.potato-mini.light-mode {
  --bg: #f5f5f5;
  --fg: #111;
  --muted: #555;
  --accent: #ff9933;
  --accent-2: #3399ff;
  --surface: #ffffff;
  --border: #e6e6e6;
  --input-bg: #ffffff;
  --hover: #f2f2f2;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
}

.potato-mini .header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.potato-mini .header__inner {
  width: min(100% - 2rem, 900px);
  margin-inline: auto;
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
}
.potato-mini .header__title {
  margin: 0;
  font-size: 1.4rem;
}
.potato-mini .nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
}
.potato-mini .nav__link {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
}
.potato-mini .nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
}
.potato-mini .nav__link--active {
  border-color: var(--accent);
}
.potato-mini .search {
  display: flex;
  gap: 8px;
}
.potato-mini .search__label {
  position: absolute;
  left: -9999px;
}
.potato-mini .search__input {
  background: var(--input-bg);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 8px 10px;
  border-radius: 10px;
  width: 160px;
}
.potato-mini .search__input::-moz-placeholder {
  color: var(--muted);
}
.potato-mini .search__input::placeholder {
  color: var(--muted);
}
.potato-mini .search__input:focus {
  outline: 2px solid var(--accent-2);
}

.potato-mini {
  background: var(--bg);
  color: var(--fg);
}
.potato-mini .main {
  width: min(100% - 2rem, 900px);
  margin-inline: auto;
  padding: 18px 0 28px;
}
.potato-mini .btn {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}
.potato-mini .btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.potato-mini .btn--secondary {
  background: var(--accent-2);
  color: var(--bg);
}
.potato-mini .btn--ghost {
  background: transparent;
  border-color: var(--muted);
  color: var(--fg);
}
.potato-mini .btn--link {
  background: transparent;
  padding: 3;
  border: 0;
  color: var(--accent-2);
}
.potato-mini .intro__box {
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 12px;
  background: var(--surface);
}
.potato-mini .intro__title {
  margin: 0 0 6px;
}
.potato-mini .intro__text {
  color: var(--muted);
  margin: 0 0 10px;
}
.potato-mini .intro__actions {
  display: flex;
  gap: 8px;
}
.potato-mini .list {
  margin-top: 20px;
}
.potato-mini .list__title {
  margin-bottom: 6px;
}
.potato-mini .list__items {
  list-style: disc inside;
  display: grid;
  gap: 4px;
}
.potato-mini .list__item {
  background: var(--surface);
  border-radius: 6px;
  padding: 6px 8px;
}
.potato-mini .sorten {
  margin-top: 20px;
}
.potato-mini .sorten__title {
  margin: 0 0 8px;
}
.potato-mini .sorten__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.potato-mini .card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}
.potato-mini .card--plain {
  border-style: dashed;
}
.potato-mini .card__title {
  margin: 0 0 6px;
}
.potato-mini .card__text {
  margin: 0 0 8px;
  color: var(--muted);
}
.potato-mini .card__btn {
  font-size: 0.9rem;
}
.potato-mini .table {
  margin-top: 20px;
}
.potato-mini .table__title {
  margin: 0 0 6px;
}
.potato-mini .table__el {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.potato-mini .table__el th,
.potato-mini .table__el td {
  border: 1px solid var(--border);
  padding: 6px;
}
.potato-mini .table__el thead {
  background: var(--border);
}
.potato-mini .table__el tbody tr:hover {
  background: var(--hover);
}
.potato-mini .table__note {
  color: var(--muted);
  font-size: 0.9rem;
}

.potato-mini .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
  text-align: center;
}
.potato-mini .footer__copy {
  margin: 0 0 6px;
  color: var(--muted);
}
.potato-mini .footer__mail {
  color: var(--accent-2);
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */