@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@500;600;700;800;900&display=swap");

:root {
  color: #ede6d6;
  background: #0d0d0f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: #ede6d6;
  background-color: #0d0d0f;
  background-image:
    linear-gradient(rgba(9, 9, 11, 0.9), rgba(9, 9, 11, 0.96)),
    url("https://images.unsplash.com/photo-1608094920645-1b790cf85d12?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTB8fGJsYWNrJTIwbWV0YWwlMjB0ZXh0dXJlfGVufDB8fDB8fHww&ixlib=rb-4.1.0&q=80&w=3000");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: 26px 0 24px;
  border-bottom: 1px solid rgba(232, 219, 194, 0.28);
}

.eyebrow {
  margin: 0 0 8px;
  color: #e3a72f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: #f4ead7;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  font-weight: 800;
  line-height: 0.86;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 10px;
}

.stat {
  min-height: 86px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-content: center;
  gap: 4px 10px;
  padding: 14px;
  border: 1px solid #d9d1c2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.stat svg {
  grid-row: span 2;
  color: #367b65;
}

.stat .icon {
  grid-row: span 2;
  color: #367b65;
  font-size: 0.72rem;
  font-weight: 900;
}

.stat span {
  color: #6c7068;
  font-size: 0.82rem;
  font-weight: 700;
}

.stat strong {
  font-size: 1.35rem;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px;
  border: 1px solid #454047;
  border-radius: 8px;
  background: rgba(20, 19, 23, 0.94);
}

.identity-control {
  display: grid;
  gap: 6px;
  min-width: 290px;
}

.identity-control > label {
  color: #6c7068;
  font-size: 0.78rem;
  font-weight: 800;
}

.identity-control > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.identity-control .primary-button {
  min-height: 42px;
  padding: 0 16px;
}

.tab {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  color: #c9c0b1;
  background: transparent;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.04rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.tab.active {
  color: #fff7e8;
  background: #a51e32;
}

.workspace {
  display: none;
  min-height: 520px;
}

.workspace.active-panel {
  display: block;
}

.workspace.active-panel.two-column,
.workspace.active-panel.logistics-grid {
  display: grid;
}

.map-panel {
  overflow: hidden;
}

.festival-map {
  display: block;
  width: 100%;
  height: min(68vh, 680px);
  min-height: 440px;
  border: 0;
}

.two-column {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  align-items: start;
}

.panel {
  border: 1px solid #454047;
  border-radius: 8px;
  background: rgba(22, 21, 25, 0.93);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid #454047;
}

.stacked-heading {
  align-items: stretch;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.search-box {
  width: min(260px, 100%);
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid #4f4952;
  border-radius: 6px;
  background: #111014;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.lineup-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid #454047;
  background: #18161b;
}

.lineup-actions div {
  display: grid;
  gap: 4px;
}

.lineup-actions span {
  color: #bdb4a7;
  font-size: 0.9rem;
}

.band-list,
.packing-list,
.notes-grid {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.band-list {
  gap: 0;
  padding: 0;
  min-width: 0;
}

.schedule-day {
  min-width: 0;
}

.schedule-day + .schedule-day {
  border-top: 1px solid #454047;
}

.schedule-day-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  background: #18161b;
}

.schedule-day-heading h3 {
  color: #f0e3c9;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.schedule-day-heading span {
  color: #d9aa45;
  font-size: 0.8rem;
  font-weight: 900;
}

.schedule-scroll {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  max-width: 100%;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  padding: 14px 18px 18px;
  scrollbar-color: #9f1d2f #211f22;
  scrollbar-width: thin;
}

.lineup-panel {
  min-width: 0;
  overflow: hidden;
}

.schedule-grid {
  width: max-content;
  min-width: max(920px, 100%);
}

.schedule-hours {
  position: relative;
  height: 30px;
  margin-left: 132px;
  border-bottom: 1px solid #454047;
}

.schedule-hours span {
  position: absolute;
  bottom: 6px;
  color: #bdb4a7;
  font-size: 0.73rem;
  font-weight: 800;
  transform: translateX(-50%);
}

.schedule-hours span:first-child {
  transform: none;
}

.schedule-hours span:last-child {
  transform: translateX(-100%);
}

.stage-lane {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 94px;
}

.stage-lane h4 {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 12px;
  position: sticky;
  left: 0;
  z-index: 2;
  border-bottom: 1px solid #454047;
  color: #ded4c5;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.stage-lane h4,
.schedule-hours {
  background: #17161a;
}

.stage-track {
  position: relative;
  overflow: hidden;
  min-height: 94px;
  border-bottom: 1px solid #454047;
  background-color: #131217;
  background-image: repeating-linear-gradient(to right, transparent 0, transparent calc(var(--hour-size) - 1px), #3d3940 calc(var(--hour-size) - 1px), #3d3940 var(--hour-size));
}

.schedule-event {
  position: absolute;
  top: 15px;
  bottom: 15px;
  display: grid;
  align-content: center;
  gap: 3px;
  min-width: 18px;
  overflow: hidden;
  padding: 7px 8px;
  border: 1px solid currentColor;
  border-radius: 5px;
  color: #173d34;
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.schedule-event.selected-by-active-member {
  box-shadow: inset 0 0 0 2px #fff1d3, 0 0 0 1px #a51e32;
}

.schedule-event:hover,
.schedule-event:focus-visible {
  z-index: 1;
  outline: 2px solid #f2c45a;
  outline-offset: 2px;
}

.schedule-event span,
.schedule-event small {
  overflow: hidden;
  text-overflow: ellipsis;
}

.schedule-event span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.77rem;
  font-weight: 900;
  line-height: 1.1;
}

.schedule-event small {
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
}

.event-members {
  display: flex;
  gap: 2px;
  min-height: 14px;
  overflow: hidden;
}

.event-members i {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(23, 33, 28, 0.35);
  border-radius: 3px;
  color: #fff;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 900;
}

.stage-0 { background: #42596f; color: #f7f2e8; }
.stage-1 { background: #b87228; color: #21160c; }
.stage-2 { background: #747f48; color: #10140b; }
.stage-3 { background: #a5414c; color: #fff5e7; }

.day-group + .day-group {
  border-top: 1px solid #e7dfd0;
}

.day-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
  background: #f8f2e6;
}

.day-heading h3 {
  color: #244f42;
}

.day-heading span {
  color: #6a5939;
  font-size: 0.8rem;
  font-weight: 900;
}

.day-band-list {
  display: grid;
  gap: 12px;
  padding: 12px 18px 18px;
}

.band-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e4dccd;
  border-radius: 8px;
  background: #fffdfa;
}

.note-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e4dccd;
  border-radius: 8px;
  background: #fffdfa;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.band-link {
  color: #1f5d4d;
  text-decoration-color: #b88d42;
  text-underline-offset: 3px;
}

.band-link:hover,
.band-link:focus-visible {
  color: #9b3e2f;
}

.band-plan {
  align-self: center;
  color: #5f675f;
  font-size: 0.78rem;
}

.band-plan select {
  min-height: 38px;
  font-size: 0.88rem;
}

.setlist-details {
  margin-top: 12px;
  border-top: 1px solid #e7dfd0;
  padding-top: 12px;
}

.setlist-details summary {
  color: #244f42;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 900;
}

.setlist-title,
.setlist-unavailable {
  margin: 10px 0 0;
  color: #5f675f;
  font-size: 0.85rem;
}

.setlist-songs {
  columns: 2;
  gap: 24px;
  margin: 12px 0;
  padding-left: 22px;
  color: #3f4942;
  font-size: 0.9rem;
}

.setlist-songs li {
  break-inside: avoid;
  margin-bottom: 5px;
}

.setlist-source {
  color: #1f5d4d;
  font-size: 0.85rem;
  font-weight: 800;
}

.stars {
  flex: 0 0 auto;
  color: #c8792b;
  display: inline-flex;
  gap: 2px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 10px 0 0;
  color: #5f675f;
  font-size: 0.9rem;
}

.card-note {
  margin: 12px 0 0;
  color: #3f4942;
}

.icon-button {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #ddd4c5;
  border-radius: 6px;
  color: #5e665d;
  background: #f8f2e6;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: #f9f7f1;
  background: #9b3e2f;
}

.card-actions {
  display: grid;
  gap: 8px;
  align-self: start;
}

.form-panel {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 14px;
  padding: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: #4b544b;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d7cebf;
  border-radius: 6px;
  padding: 9px 11px;
  color: #17211c;
  background: #fffdfa;
}

textarea {
  min-height: 106px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input[type="range"] {
  padding: 0;
  accent-color: #367b65;
}

.range-label {
  color: #677064;
  font-size: 0.86rem;
}

.primary-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  color: #fff7e8;
  background: #a51e32;
  font-weight: 900;
}

.secondary-button {
  min-height: 42px;
  flex: 0 0 auto;
  border: 1px solid #bc2c42;
  border-radius: 6px;
  padding: 0 14px;
  color: #f2dfbd;
  background: #1b191d;
  font-weight: 900;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  color: #fff7e8;
  background: #a51e32;
}

.source-tag,
.empty-state {
  margin: 12px 0 0;
  color: #6a5939;
  font-size: 0.82rem;
  font-weight: 800;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #c12b43;
}

label,
.identity-control > label {
  color: #c9c0b1;
}

input,
select,
textarea {
  border-color: #4f4952;
  color: #f2eadc;
  background: #111014;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #e3a72f;
  outline-offset: 1px;
}

.identity-control > label {
  color: #c9c0b1;
}

.noticeboard-workspace {
  grid-template-columns: minmax(0, 1fr) 330px;
}

.noticeboard-panel {
  min-height: 520px;
}

.noticeboard-badge {
  padding: 6px 9px;
  border: 1px solid #8f2737;
  border-radius: 4px;
  color: #efc464;
  background: #2a141b;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.noticeboard-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  align-items: start;
  gap: 18px;
  padding: 22px;
}

.notice-card {
  position: relative;
  min-height: 172px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(234, 216, 181, 0.25);
  border-radius: 3px;
  color: #29231b;
  background: #eadab3;
  box-shadow: 5px 7px 0 rgba(0, 0, 0, 0.2);
  transform: rotate(-0.35deg);
}

.notice-card:nth-child(2n) {
  background: #d9cfba;
  transform: rotate(0.45deg);
}

.notice-card:nth-child(3n) {
  background: #e4c98e;
  transform: rotate(-0.18deg);
}

.notice-card .icon-button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-color: rgba(44, 35, 25, 0.25);
  color: #4e3427;
  background: rgba(255, 255, 255, 0.36);
}

.notice-card .icon-button:hover,
.notice-card .icon-button:focus-visible {
  color: #fff7e8;
  background: #a51e32;
}

.notice-author {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 3px 8px;
  padding-right: 24px;
  color: #3c2b20;
  font-size: 0.78rem;
}

.notice-author strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.notice-author span:last-child {
  grid-column: 2;
  color: #655442;
}

.notice-avatar {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35, 25, 17, 0.45);
  border-radius: 50%;
  color: #fff9ec;
  background: var(--member-color);
  font-size: 0.73rem;
  font-weight: 900;
}

.notice-message {
  margin: 0;
  white-space: pre-wrap;
  color: #211b15;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.48;
}

.notice-form {
  border-top: 3px solid #a51e32;
  background: rgba(25, 23, 27, 0.97);
}

.notice-form textarea {
  min-height: 185px;
}

.posting-as {
  margin: -2px 0 0;
  color: #bdb4a7;
  font-size: 0.86rem;
}

.posting-as strong {
  color: #efc464;
}

.noticeboard-empty {
  grid-column: 1 / -1;
  margin: 0;
}

.setlists-panel {
  min-width: 0;
}

.setlists-key {
  max-width: 250px;
  color: #bdb4a7;
  font-size: 0.82rem;
  line-height: 1.35;
  text-align: right;
}

.setlist-day + .setlist-day {
  border-top: 1px solid #454047;
}

.setlist-day-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: #18161b;
}

.setlist-day-heading h3 {
  color: #f0e3c9;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.setlist-day-heading span {
  color: #d9aa45;
  font-size: 0.8rem;
  font-weight: 800;
}

.setlist-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 14px;
  padding: 20px;
}

.setlist-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 16px;
  border: 1px solid #49444b;
  border-top: 3px solid #a51e32;
  border-radius: 4px;
  background: #151419;
}

.setlist-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #e3a72f;
  font-size: 0.73rem;
  font-weight: 900;
}

.setlist-card-topline span:last-child {
  color: #bdb4a7;
  text-align: right;
}

.setlist-card h4 {
  margin: 12px 0 10px;
  color: #f5e9d3;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.setlist-selection {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 22px;
  margin-bottom: 10px;
  color: #89828b;
  font-size: 0.76rem;
  font-weight: 700;
}

.setlist-selection.has-selections {
  color: #e8dece;
}

.setlist-selection i {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 247, 232, 0.45);
  border-radius: 50%;
  color: #fff;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 900;
}

.setlist-source-date {
  margin: 4px 0 10px;
  color: #a79e92;
  font-size: 0.75rem;
}

.setlist-card-songs {
  display: grid;
  gap: 5px;
  margin: 0 0 16px;
  padding-left: 23px;
  color: #d9d0c3;
  font-size: 0.82rem;
  line-height: 1.28;
}

.setlist-card .setlist-source {
  margin-top: auto;
  color: #efc464;
}

.setlist-card .setlist-unavailable {
  margin: 8px 0 0;
  color: #a79e92;
}

.progress-pill {
  min-width: 84px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #f9f7f1;
  background: #17211c;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
}

.progress-track {
  height: 10px;
  margin: 18px 18px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #e6dece;
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #367b65;
}

.packing-item {
  grid-template-columns: 20px 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid #e4dccd;
  border-radius: 8px;
  background: #fffdfa;
}

.packing-item input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-visual {
  color: #367b65;
}

.packed {
  color: #7b817b;
  text-decoration: line-through;
}

.packing-item small {
  padding: 5px 8px;
  border-radius: 999px;
  color: #5f4a27;
  background: #f1dfb8;
  font-size: 0.76rem;
  font-weight: 900;
}

.packing-copy {
  display: grid;
  gap: 3px;
}

.contributor-meta {
  margin: 8px 0 0;
  color: #6c7068;
  font-size: 0.77rem;
  font-weight: 700;
}

.packing-copy .contributor-meta {
  margin: 0;
}

.group-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid #e7dfd0;
}

.group-controls span,
.group-controls strong {
  display: block;
}

.group-controls span {
  color: #6c7068;
  font-size: 0.78rem;
  font-weight: 800;
}

.group-controls strong {
  margin-top: 3px;
  color: #244f42;
}

.member-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.member-row {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid #e4dccd;
  border-radius: 8px;
  background: #fffdfa;
}

.member-row.active-member {
  border-color: #367b65;
  background: #eef7f1;
}

.identity-gate {
  position: fixed;
  z-index: 10;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 33, 28, 0.62);
}

.identity-gate[hidden] {
  display: none;
}

.identity-dialog {
  width: min(460px, 100%);
  padding: 24px;
  border: 1px solid #d9d1c2;
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 24px 70px rgba(20, 24, 21, 0.35);
}

.identity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.identity-option {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #d9d1c2;
  border-radius: 6px;
  color: #244f42;
  background: #f8f2e6;
  font-weight: 900;
  text-align: left;
}

.identity-option:hover,
.identity-option:focus-visible {
  border-color: #367b65;
  color: #f9f7f1;
  background: #367b65;
}

.member-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.member-row strong,
.member-row small {
  display: block;
}

.member-row small {
  margin-top: 3px;
  color: #6c7068;
}

.note-card {
  grid-template-columns: minmax(0, 1fr) 36px;
}

.note-card .icon-button {
  grid-column: 2;
  grid-row: 1;
}

.note-card h3,
.note-card p {
  grid-column: 1 / -1;
}

.note-card p {
  margin: 8px 0 0;
  color: #4e574f;
}

.note-card .contributor-meta {
  grid-column: 1 / -1;
}

.icon-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.logistics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-panel {
  min-height: 230px;
  padding: 20px;
}

.info-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #f9f7f1;
  background: #17211c;
}

.info-panel ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: #4e574f;
}

@media (max-width: 860px) {
  .topbar,
  .two-column,
  .logistics-grid,
  .noticeboard-workspace {
    grid-template-columns: 1fr;
  }

  .identity-control {
    min-width: 0;
  }

  .form-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .app-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }

  .tabs {
    grid-template-columns: 1fr 1fr;
  }

  .identity-control {
    width: 100%;
  }

  .stat {
    min-height: 72px;
  }

  .tab {
    min-height: 46px;
  }

  .panel-heading,
  .lineup-actions,
  .card-title-row,
  .day-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .band-card {
    grid-template-columns: 1fr;
  }

  .band-plan {
    width: 100%;
  }

  .setlist-songs {
    columns: 1;
  }

  .toolbar,
  .search-box {
    width: 100%;
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .group-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .identity-list {
    grid-template-columns: 1fr;
  }

  .schedule-scroll {
    padding: 12px 0 16px;
  }

  .schedule-grid {
    min-width: 880px;
  }

  .schedule-day-heading {
    padding: 16px;
  }

  .setlists-key {
    max-width: none;
    text-align: left;
  }

  .setlist-day-heading,
  .setlists-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .setlist-card-grid {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .noticeboard-list {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .form-grid,
  .packing-item {
    grid-template-columns: 1fr;
  }

  .packing-item small {
    width: fit-content;
  }
}
