/*
 * Helfertool TV Spiez
 * Mobile first, ohne JavaScript, keine externen Ressourcen, Kontrast nach WCAG 2.1 AA.
 *
 * Farben aus dem Vereinslogo:
 *   Blau  #0080C6  Flächen, Akzente, grosse Schrift (4.28:1 auf Weiss)
 *   Gelb  #F8C824  nur Akzente, Text darauf dunkel (11:1)
 *   Rot   #C8352C  Akzente und Hinweise (5.25:1 auf Weiss)
 * Text, Links und Buttons: dunkleres Blau #006BA6 (5.75:1) bzw. #005A8C (7.39:1).
 */

:root {
  --brand: #0080c6;
  --brand-strong: #006ba6;
  --brand-darker: #005a8c;
  --brand-deep: #00486f;
  --brand-tint: #e8f4fb;
  --brand-tint-strong: #cfe7f6;
  --yellow: #f8c824;
  --yellow-tint: #fef6d8;
  --red: #c8352c;
  --text: #16202a;
  --muted: #4a5560;
  --surface: #ffffff;
  --surface-alt: #f3f6f9;
  --border: #d6dee6;
  --error: #b3261e;
  --error-tint: #fdecea;
  --success: #0b6b2f;
  --success-tint: #e6f4ea;
  --radius: 0.75rem;
  --radius-small: 0.5rem;
  --shadow: 0 1px 2px rgba(16, 32, 48, 0.06), 0 4px 16px rgba(16, 32, 48, 0.08);
  --shadow-hover: 0 2px 4px rgba(16, 32, 48, 0.08), 0 10px 28px rgba(16, 32, 48, 0.14);
  --space: 1rem;
  --max-width: 62rem;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--surface-alt);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

main {
  flex: 1 0 auto;
}

a {
  color: var(--brand-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-darker);
}

:focus-visible {
  outline: 3px solid var(--brand-darker);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--surface);
  padding: 0.5rem 1rem;
  z-index: 10;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space);
}

/* --- Kopfzeile ------------------------------------------------------------------ */

.site-header {
  background: var(--surface);
  border-top: 5px solid transparent;
  border-image: linear-gradient(90deg, var(--yellow) 0 33.3%, var(--red) 33.3% 66.6%, var(--brand) 66.6%) 1;
  box-shadow: 0 1px 0 var(--border);
  position: relative;
  z-index: 2;
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem var(--space);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--text);
}

.brand__logo {
  display: block;
  height: 3.5rem;
  width: auto;
}

.brand__label {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--brand-strong);
  padding-left: 0.9rem;
  border-left: 2px solid var(--border);
  line-height: 1.2;
}

/* --- Hero ---------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-strong) 70%);
  padding: 2.25rem 0 3.25rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1.5rem), 0 100%);
}

/* Dekorative Kreise in Vereinsblau und Gelb (reine Flächen, kein Text). */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 22rem;
  height: 22rem;
  right: -7rem;
  top: -9rem;
  background: var(--brand);
  opacity: 0.55;
}

.hero::after {
  width: 7rem;
  height: 7rem;
  right: 12%;
  bottom: -3.5rem;
  background: var(--yellow);
  opacity: 0.9;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 40rem;
}

.hero p {
  margin: 0;
  font-size: 1.125rem;
  max-width: 38rem;
}

.hero a {
  color: #ffffff;
}

.hero__back {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  font-size: 1.05rem;
}

.hero__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: none;
  fill: currentColor;
}

/* --- Inhalt --------------------------------------------------------------------------- */

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem var(--space) 3rem;
  width: 100%;
}

.page--narrow {
  max-width: 44rem;
}

h1 {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0.5rem 0 1rem;
}

h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 2rem 0 0.75rem;
}

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

.section-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-title::before {
  content: "";
  width: 0.35rem;
  height: 1.3em;
  border-radius: 1rem;
  background: var(--brand);
}

.muted {
  color: var(--muted);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  margin-bottom: var(--space);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin: 0 0 0.5rem;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.notice {
  border-radius: var(--radius-small);
  padding: 0.85rem 1rem;
  margin: 0 0 var(--space);
  border-left: 5px solid var(--brand-strong);
  background: var(--brand-tint);
}

.notice p {
  margin: 0.25rem 0;
}

.notice--error {
  border-left-color: var(--error);
  background: var(--error-tint);
}

.notice--success {
  border-left-color: var(--success);
  background: var(--success-tint);
}

.notice--warning {
  border-left-color: #b88a00;
  background: var(--yellow-tint);
}

/* --- Anlass-Karten ---------------------------------------------------------------- */

.event-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.event-card {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.event-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.date-tile {
  flex: none;
  width: 4.5rem;
  border-radius: var(--radius-small);
  background: var(--brand-strong);
  color: #ffffff;
  text-align: center;
  padding: 0.45rem 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.date-tile__day {
  font-size: 1.75rem;
  font-weight: 800;
}

.date-tile__month {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-card__body {
  flex: 1;
  min-width: 0;
}

.event-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.event-card__title a {
  color: var(--text);
  text-decoration: none;
}

/* Ganze Karte klickbar, Link bleibt das einzige interaktive Element. */
.event-card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
}

.event-card__title a:focus-visible {
  outline: none;
}

.event-card__title a:focus-visible::after {
  outline: 3px solid var(--brand-darker);
  outline-offset: 3px;
}

.event-card .meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.event-card__cta {
  display: inline-block;
  margin-top: 0.25rem;
  font-weight: 700;
  color: var(--brand-strong);
}

.empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
}

.empty-state img {
  width: 5rem;
  opacity: 0.9;
}

/* --- Schichten --------------------------------------------------------------------- */

.shift-day {
  margin-bottom: 1.75rem;
}

.shift-day > h2 {
  margin-top: 1.5rem;
}

.shift-area {
  margin-bottom: 1rem;
}

.shift-area > h3 {
  color: var(--brand-strong);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 1rem 0 0.5rem;
}

.shift-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.shift {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.shift:hover {
  border-color: var(--brand);
}

.shift:has(input:checked) {
  border-color: var(--brand-strong);
  background: var(--brand-tint);
}

.shift input[type="checkbox"] {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.15rem 0 0;
  flex: none;
  accent-color: var(--brand-strong);
}

.shift label {
  flex: 1;
  cursor: pointer;
  display: grid;
  gap: 0.2rem;
}

.shift--full {
  background: var(--surface-alt);
  border-style: dashed;
}

.shift--full:hover {
  border-color: var(--border);
}

.shift--full label {
  cursor: default;
}

.shift__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 0.75rem;
}

.shift__time {
  font-weight: 800;
  font-size: 1.1rem;
}

/* Belegung als Balken (natives <progress>, kein Inline-Style nötig). */
.occupancy {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.occupancy progress,
.event-card__need progress {
  appearance: none;
  width: 100%;
  height: 0.5rem;
  border: 0;
  border-radius: 1rem;
  background: var(--brand-tint-strong);
  overflow: hidden;
}

.occupancy progress::-webkit-progress-bar,
.event-card__need progress::-webkit-progress-bar {
  background: var(--brand-tint-strong);
  border-radius: 1rem;
}

.occupancy progress::-webkit-progress-value,
.event-card__need progress::-webkit-progress-value {
  background: var(--brand);
  border-radius: 1rem;
}

.occupancy progress::-moz-progress-bar,
.event-card__need progress::-moz-progress-bar {
  background: var(--brand);
  border-radius: 1rem;
}

.shift--full .occupancy progress::-webkit-progress-value {
  background: var(--red);
}

.shift--full .occupancy progress::-moz-progress-bar {
  background: var(--red);
}

.occupancy__text {
  font-size: 0.9rem;
  color: var(--muted);
  white-space: nowrap;
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.1rem 0.6rem;
  border-radius: 999px;
  background: var(--brand-tint);
  color: var(--brand-darker);
  white-space: nowrap;
}

.badge--full {
  background: var(--error-tint);
  color: var(--error);
}

.badge--free {
  background: var(--yellow-tint);
  color: #6b5200;
}

.badge--closed {
  background: var(--surface-alt);
  color: var(--muted);
  border: 1px solid var(--border);
}

/* --- Formulare ------------------------------------------------------------------------ */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  padding: 0;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.field .optional {
  font-weight: 400;
  color: var(--muted);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1.5px solid #8a96a3;
  border-radius: var(--radius-small);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-strong);
  box-shadow: 0 0 0 4px rgba(0, 128, 198, 0.2);
  outline: none;
}

.field--error input {
  border-color: var(--error);
  border-width: 2px;
}

.help {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.error {
  display: block;
  color: var(--error);
  font-weight: 700;
  margin-top: 0.3rem;
}

.checkbox-field {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.checkbox-field input {
  width: 1.4rem;
  height: 1.4rem;
  margin: 0.1rem 0 0;
  flex: none;
  accent-color: var(--brand-strong);
}

.checkbox-field label {
  font-weight: 400;
}

/* Honeypot: für Menschen unsichtbar, für Screenreader verborgen (T-29). */
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font: inherit;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  min-height: 2.9rem;
  border: 2px solid var(--brand-strong);
  border-radius: 999px;
  background: var(--brand-strong);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.button:hover {
  background: var(--brand-darker);
  border-color: var(--brand-darker);
  color: #ffffff;
}

.button:active {
  transform: translateY(1px);
}

.button--large {
  font-size: 1.1rem;
  padding: 0.9rem 2rem;
}

.button--secondary {
  background: var(--surface);
  color: var(--brand-strong);
}

.button--secondary:hover {
  background: var(--brand-tint);
  color: var(--brand-darker);
}

.button--small {
  padding: 0.35rem 0.9rem;
  min-height: 2.25rem;
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--brand-strong);
}

.button--danger {
  background: var(--error);
  border-color: var(--error);
}

.button--danger:hover {
  background: #8c1d17;
  border-color: #8c1d17;
}

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

.link-button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--brand-strong);
  text-decoration: underline;
  cursor: pointer;
}

/* --- Fusszeile ------------------------------------------------------------------ */

.site-footer {
  flex-shrink: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem var(--space);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.site-footer__brand img {
  height: 2rem;
  width: auto;
}

.site-footer nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* --- Admin-Bereich ------------------------------------------------------------- */

.backoffice .page {
  max-width: 76rem;
}

.backoffice .site-header__inner {
  max-width: 76rem;
}

.bo-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bo-nav a {
  color: var(--brand-strong);
  font-weight: 700;
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 3px solid transparent;
}

.bo-nav a:hover,
.bo-nav a:focus-visible {
  border-bottom-color: var(--yellow);
}

.bo-logout {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bo-user {
  font-weight: 700;
  color: var(--muted);
}

.bo-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.narrow {
  max-width: 34rem;
}

.table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

.table th,
.table td {
  text-align: left;
  vertical-align: top;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border);
}

.table thead th {
  background: var(--brand-tint);
  color: var(--brand-deep);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.table tbody tr:hover {
  background: #f8fbfd;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
}

.table-actions form {
  display: inline;
}

.secret {
  display: inline-block;
  font-size: 1.1rem;
  padding: 0.3rem 0.6rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  word-break: break-all;
}

.filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space);
}

.filter select {
  width: auto;
}

.field-legend {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

/* --- Grössere Bildschirme ------------------------------------------------------------ */

@media (min-width: 40rem) {
  .brand__logo {
    height: 4.25rem;
  }

  .hero {
    padding: 3rem 0 4.25rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  h1 {
    font-size: 2rem;
  }

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
  }

  .form-card,
  .card {
    padding: 1.75rem;
  }
}

@media (min-width: 56rem) {
  .event-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .actions,
  .hero::before,
  .hero::after {
    display: none;
  }

  .hero {
    color: #000000;
    background: none;
    clip-path: none;
  }
}

/* --- Feinschliff --------------------------------------------------------------- */

/* Legend in einer umrandeten Karte nicht auf den Rand setzen. */
.form-card > legend {
  float: left;
  width: 100%;
  margin-bottom: 1rem;
}

.form-card > legend + * {
  clear: both;
}

.card > :first-child {
  margin-top: 0;
}

.card > :last-child {
  margin-bottom: 0;
}

/* Kleine Karten (Login, Bestätigungen) mittig. */
.card.narrow {
  margin: 1.5rem auto;
}

/* --- Mitgliederkonto (Kopfzeile) ------------------------------------------------ */

.site-nav {
  margin-left: auto;
}

.site-nav + .bo-logout {
  margin-left: 0;
}

.field input[readonly] {
  background: var(--surface-alt);
  color: var(--muted);
  cursor: default;
}

/* --- OK-Verantwortliche pro Anlass ---------------------------------------------- */

.organizer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.organizer-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.inline-form {
  max-width: 28rem;
}

/* --- Benutzerführung (Etappe 11) ------------------------------------------------ */

.event-card__need {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  margin: 0.5rem 0 0.25rem;
}

.event-card__need progress {
  flex: 1 1 8rem;
  max-width: 14rem;
}

.how-to__status {
  margin-top: 0;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
}

@media (min-width: 48rem) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.steps__nr {
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--brand-strong);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.chosen-shifts {
  margin: 0 0 0.75rem;
  padding-left: 1.2rem;
}

.chosen-shifts li {
  margin: 0.25rem 0;
}

#angaben {
  scroll-margin-top: 1rem;
}

.past-events {
  margin-top: 1.5rem;
}

.past-events > summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--brand-strong);
  padding: 0.5rem 0;
}

.setup__title {
  margin-top: 0;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist__item {
  position: relative;
  padding: 0.35rem 0 0.35rem 2rem;
}

.checklist__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--border);
  border-radius: 50%;
  box-sizing: border-box;
}

.checklist__item--done::before {
  border-color: var(--success);
  background: var(--success);
  /* Häkchen als Rahmen eines gedrehten Rechtecks (ohne Bild, CSP-konform). */
  box-shadow: inset 0 0 0 3px var(--success);
}

.checklist__item--done::after {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.62rem;
  width: 0.3rem;
  height: 0.6rem;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checklist__item--done {
  color: var(--muted);
}

.share-link {
  max-width: 40rem;
}

.shift--overlap {
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px var(--yellow);
}

.shift__overlap {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #6b4e00;
}

.overlap-confirm {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-small);
  background: var(--yellow-tint);
}

#ueberschneidung ul {
  margin: 0.25rem 0 0.5rem;
}
