/* Themed to match dcdiamondpilots.com (HTML5 UP "Read Only"):
   #1b1f22 dark, white text, Source Sans Pro, uppercase letter-spaced headings,
   ghost buttons with inset white border. */

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #1b1f22;
  color: #ffffff;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 13pt;
  line-height: 1.65;
  min-width: 320px;
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 1.25rem 2rem 3rem;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

@media screen and (max-width: 736px) { #wrapper { padding: 1rem 1rem 2rem; } }
@media screen and (max-width: 480px) { #wrapper { padding: 0.75rem 0.75rem 1.5rem; } }

/* ── Header ───────────────────────────────────────────────────────────────── */

#header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.175);
  padding: 0.5rem 0 0.75rem;
  margin-bottom: 1.25rem;
}

#header .logo {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 100%;
  border: solid 1px rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

#header .logo .icon { color: #ffffff; }

#header .brand {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  flex: 1;
  min-width: 0;
}

#header h1 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  margin: 0;
  line-height: 1.2;
}

#header .tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.05rem;
  margin: 0;
}

#user-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}
#user-greeting {
  font-size: 0.65rem;
  letter-spacing: 0.05rem;
  white-space: nowrap;
}

@media screen and (max-width: 480px) {
  #header h1 { font-size: 0.85rem; letter-spacing: 0.25rem; }
  #header .tagline { display: none; }
  #user-greeting { font-size: 0.6rem; }
}

/* ── Sections ─────────────────────────────────────────────────────────────── */

main { display: flex; flex-direction: column; gap: 1.5rem; flex: 1; }

section {
  border-bottom: solid 1px rgba(255, 255, 255, 0.175);
  padding-bottom: 1.5rem;
}
section:last-child { border-bottom: none; }

h2 {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35rem;
  margin: 0 0 0.6rem 0;
  color: #ffffff;
}
h3 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  margin: 1.5rem 0 0.75rem;
}

p { margin: 0 0 1rem 0; }
.muted { color: rgba(255, 255, 255, 0.55); }
.error { color: #ff8a80; }

ul.explainer {
  margin: 0 0 1rem 0;
  padding-left: 1.25rem;
  list-style: disc;
}
ul.explainer li { padding: 0.1rem 0; }
ul.explainer em { color: rgba(255, 255, 255, 0.85); font-style: normal; font-weight: 600; letter-spacing: 0.02rem; }

.message {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.message.error { border-color: #ff8a80; color: #ff8a80; background: rgba(255, 138, 128, 0.08); }

/* ── Buttons (ghost, white inset border) ──────────────────────────────────── */

button, input[type="submit"] {
  appearance: none;
  background-color: transparent;
  border: 0;
  box-shadow: inset 0 0 0 1px #ffffff;
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  padding: 0 1.5rem;
  height: 2.75rem;
  line-height: calc(2.75rem - 2px);
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
button:hover, input[type="submit"]:hover {
  background-color: rgba(255, 255, 255, 0.075);
}
button:active, input[type="submit"]:active {
  background-color: rgba(255, 255, 255, 0.175);
}
button.secondary { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); color: rgba(255, 255, 255, 0.85); }
button.danger { box-shadow: inset 0 0 0 1px #ff8a80; color: #ff8a80; }
button.danger:hover { background-color: rgba(255, 138, 128, 0.08); }
button.success { box-shadow: inset 0 0 0 1px #6cd089; color: #6cd089; }
button.success:hover { background-color: rgba(108, 208, 137, 0.08); }

#reset-ranking { margin-left: auto; }

#signout-btn {
  height: 2rem;
  font-size: 0.7rem;
  padding: 0 0.9rem;
  letter-spacing: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ── Form inputs ──────────────────────────────────────────────────────────── */

input[type="password"], input[type="text"] {
  appearance: none;
  background: transparent;
  border: solid 1px rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  padding: 0 1rem;
  height: 2.75rem;
  width: 100%;
  max-width: 22rem;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}
input[type="password"]:focus, input[type="text"]:focus {
  background: rgba(255, 255, 255, 0.075);
  border-color: #ffffff;
  box-shadow: 0 0 0 1px #ffffff;
  outline: none;
}

#login-form { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }

#login-view { text-align: center; }
#login-view #login-form { justify-content: center; }

label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.6); text-transform: uppercase; letter-spacing: 0.15rem; }

.actions { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; }

/* ── Ranking list ─────────────────────────────────────────────────────────── */

.ranking-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.5rem 0 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
#ranking-counter { color: rgba(255, 255, 255, 0.55); font-size: 0.9rem; letter-spacing: 0.1rem; }
.badge {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

/* Tier container */
#tiers {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.tier {
  border: solid 1px rgba(255, 255, 255, 0.175);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border-left-width: 4px;
}
.tier[data-tier="reallyWant"] { border-left-color: #6cd089; }   /* green */
.tier[data-tier="want"]       { border-left-color: #76b3ff; }   /* blue */
.tier[data-tier="okay"]       { border-left-color: rgba(255,255,255,0.35); }
.tier[data-tier="avoid"]      { border-left-color: #ff8a80; }   /* soft red */

.tier-head {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: solid 1px rgba(255, 255, 255, 0.075);
  flex-wrap: wrap;
}
.tier-label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #ffffff;
}
.tier-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05rem;
}
.tier-count {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  min-width: 1.5rem;
  text-align: right;
}
.tier-actions {
  margin-left: auto;
  display: inline-flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.tier-action {
  height: 1.85rem;
  padding: 0 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border: 0;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
.tier-action:hover {
  background: rgba(255, 255, 255, 0.075);
  color: #ffffff;
}

.rank-list {
  list-style: none;
  margin: 0;
  padding: 0.55rem;
  min-height: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rank-list:empty::after {
  content: "Double click to add weeks";
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
}
.rank-list li {
  width: 12rem;
  min-height: 6rem;
  padding: 0.6rem 0.8rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  cursor: grab;
  user-select: none;
  touch-action: manipulation;
  transition: background-color 0.12s ease-in-out, transform 0.12s ease-in-out;
}
.rank-list li:hover { background: rgba(255, 255, 255, 0.12); }
.rank-list li.sortable-chosen {
  background: rgba(255, 255, 255, 0.18);
  cursor: grabbing;
  transform: scale(1.03);
}
.rank-list li.sortable-ghost { opacity: 0.35; background: rgba(255, 255, 255, 0.18); }
.rank-list li.sortable-drag { background: rgba(255, 255, 255, 0.22); }

/* Top-three medal accents — gold/silver/bronze rails on each tier's first three tiles. */
.rank-list li:nth-child(1) {
  box-shadow: inset 0 0 0 1.5px #d4af37;
  background: rgba(212, 175, 55, 0.1);
}
.rank-list li:nth-child(1):hover { background: rgba(212, 175, 55, 0.18); }
.rank-list li:nth-child(2) {
  box-shadow: inset 0 0 0 1.5px #c0c0c0;
  background: rgba(192, 192, 192, 0.08);
}
.rank-list li:nth-child(2):hover { background: rgba(192, 192, 192, 0.16); }
.rank-list li:nth-child(3) {
  box-shadow: inset 0 0 0 1.5px #cd7f32;
  background: rgba(205, 127, 50, 0.1);
}
.rank-list li:nth-child(3):hover { background: rgba(205, 127, 50, 0.18); }

/* Avoid tier: every tile is red, since "top" here is "most avoided". */
.tier[data-tier="avoid"] .rank-list li {
  box-shadow: inset 0 0 0 1.5px #ff8a80;
  background: rgba(255, 138, 128, 0.08);
}
.tier[data-tier="avoid"] .rank-list li:hover {
  background: rgba(255, 138, 128, 0.16);
}

.tile-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.15rem;
  letter-spacing: 0.01rem;
}
.tile-title b { font-weight: 700; }
.tile-date {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
.tile-date i {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 0.15rem;
}

@media (max-width: 480px) {
  .rank-list li { width: calc(50% - 0.27rem); min-height: 5.75rem; }
  .tile-title { font-size: 0.85rem; }
  .tile-date { font-size: 0.78rem; }
}

.maintenance-callout {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  border: solid 1px rgba(255, 255, 255, 0.18);
  border-left: 4px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}
.m-head { display: flex; gap: 0.85rem; align-items: baseline; flex-wrap: wrap; margin-bottom: 0.65rem; }
.m-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  color: #ffffff;
}
.m-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05rem;
}

.maintenance-tiles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.maintenance-tiles li {
  width: 12rem;
  min-height: 5.25rem;
  padding: 0.55rem 0.75rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.22);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  cursor: default;
}
.maintenance-tiles .tile-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.25;
  margin-bottom: 0.1rem;
}
.maintenance-tiles .tile-date {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
.maintenance-tiles .tile-date i {
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 0.15rem;
}

@media (max-width: 480px) {
  .maintenance-tiles li { width: calc(50% - 0.27rem); min-height: 4.75rem; }
  .maintenance-tiles .tile-title { font-size: 0.8rem; }
  .maintenance-tiles .tile-date { font-size: 0.72rem; }
}

/* ── Status / Results ─────────────────────────────────────────────────────── */

#status-view h2,
#status-view #status-summary {
  text-align: center;
}

.status-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.status-list li {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.05rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}
.status-list li.done {
  color: #6cd089;
  border-color: rgba(108, 208, 137, 0.55);
  background: rgba(108, 208, 137, 0.1);
}
.status-list li.pending { color: rgba(255, 255, 255, 0.45); }

#draft-order { padding-left: 1.25rem; }
#draft-order li { padding: 0.2rem 0; }

#results-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; font-size: 0.9rem; }
#results-table th, #results-table td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}
#results-table th {
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.15rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
#results-table tr.maintenance-row td { color: rgba(255, 255, 255, 0.45); font-style: italic; }

/* ── Admin ────────────────────────────────────────────────────────────────── */

/* ── Admin dashboard ──────────────────────────────────────────────────────── */

#submissions { list-style: none; padding: 0; margin: 1rem 0 0; }
#submissions li {
  padding: 0.85rem 1rem;
  border: solid 1px rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  margin-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
}
#submissions li.done { border-color: rgba(108, 208, 137, 0.45); }
#submissions li.pending { border-color: rgba(255, 255, 255, 0.15); }
#submissions .sub-head { display: flex; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; align-items: baseline; }
#submissions .sub-head .muted { font-size: 0.85rem; color: rgba(255, 255, 255, 0.45); }
#submissions details { margin-top: 0.65rem; }
#submissions details summary {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  padding: 0.25rem 0;
}
#submissions ol.ranking-detail {
  margin: 0.5rem 0 0;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  max-height: 18rem;
  overflow-y: auto;
}
#submissions ol.ranking-detail li { padding: 0.15rem 0; border: none; background: none; margin: 0; }

/* ── Footer ───────────────────────────────────────────────────────────────── */

#footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: solid 1px rgba(255, 255, 255, 0.175);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-align: center;
}

/* ── Tile modal (double-click a tile to move it cross-tier) ───────────────── */

#tile-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: tile-modal-fade 0.15s ease-out;
}
#tile-modal[hidden] { display: none; }
@keyframes tile-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.tile-modal-content {
  background: rgba(27, 31, 34, 0.98);
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  width: 100%;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.tile-modal-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
.tile-modal-dates {
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-variant-numeric: tabular-nums;
}
.tile-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tile-modal-buttons button {
  width: 100%;
  height: 2.85rem;
  font-size: 0.78rem;
}
.tile-modal-buttons button.tier-pick-reallyWant {
  box-shadow: inset 0 0 0 1px #d4af37;
  color: #d4af37;
}
.tile-modal-buttons button.tier-pick-reallyWant:hover { background: rgba(212, 175, 55, 0.12); }
.tile-modal-buttons button.tier-pick-want {
  box-shadow: inset 0 0 0 1px #76b3ff;
  color: #76b3ff;
}
.tile-modal-buttons button.tier-pick-want:hover { background: rgba(118, 179, 255, 0.12); }
.tile-modal-buttons button.tier-pick-okay {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.9);
}
.tile-modal-buttons button.tier-pick-okay:hover { background: rgba(255, 255, 255, 0.08); }
.tile-modal-buttons button.tier-pick-avoid {
  box-shadow: inset 0 0 0 1px #ff8a80;
  color: #ff8a80;
}
.tile-modal-buttons button.tier-pick-avoid:hover { background: rgba(255, 138, 128, 0.12); }
.tile-modal-cancel { margin-top: 0.5rem; }

/* ── Picker modal (double-click an empty tier to add weeks) ───────────────── */

#picker-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: tile-modal-fade 0.15s ease-out;
}
#picker-modal[hidden] { display: none; }

.picker-content {
  position: relative;
  background: rgba(27, 31, 34, 0.98);
  border: solid 1px rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1.25rem;
  width: 100%;
  max-width: 26rem;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.picker-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
}
.picker-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.picker-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
.picker-hint {
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: 0.8rem;
}
.picker-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  overflow-y: auto;
  border: solid 1px rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  -webkit-overflow-scrolling: touch;
}
.picker-list li {
  padding: 0.65rem 0.85rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.075);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.12s ease-in-out;
}
.picker-list li:last-child { border-bottom: none; }
.picker-list li:hover { background: rgba(255, 255, 255, 0.07); }
.picker-list li.in-target {
  opacity: 0.4;
  cursor: default;
}
.picker-list li.in-target:hover { background: transparent; }
.picker-list .row-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.1rem; }
.picker-list .row-title { font-size: 0.9rem; font-weight: 600; }
.picker-list .row-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
}
.picker-list .row-badge {
  font-size: 0.6rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}
.picker-list li.badge-reallyWant .row-badge { color: #d4af37; border-color: rgba(212, 175, 55, 0.55); }
.picker-list li.badge-want       .row-badge { color: #76b3ff; border-color: rgba(118, 179, 255, 0.55); }
.picker-list li.badge-okay       .row-badge { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.picker-list li.badge-avoid      .row-badge { color: #ff8a80; border-color: rgba(255, 138, 128, 0.55); }
.picker-done { margin-top: 0.25rem; }
#footer a { color: rgba(255, 255, 255, 0.6); text-decoration: none; border-bottom: dotted 1px rgba(255, 255, 255, 0.3); }
#footer a:hover { color: #ffffff; }
