:root {
  --body: #f4f6f9;
  --panel: #ffffff;
  --sidebar: #343a40;
  --sidebar-2: #3f474f;
  --text: #343a40;
  --muted: #6c757d;
  --line: #dee2e6;
  --primary: #3c8dbc;
  --primary-strong: #2f78a0;
  --success-bg: #d4edda;
  --success-border: #b1dfbb;
  --success-text: #225a2f;
  --error-bg: #f8d7da;
  --error-border: #f1b8bf;
  --error-text: #6e2a32;
  --danger: #dc3545;
  --danger-strong: #b82a39;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Source Sans 3", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background: var(--body);
}

.admin-app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
}

.admin-app-login {
  grid-template-columns: minmax(0, 1fr);
}

.admin-sidebar {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--sidebar), #2a2f34);
  color: #c2c7d0;
  padding: 12px;
  border-right: 1px solid #2a3035;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  padding: 8px;
  border-bottom: 1px solid #4b545c;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  background: #fff;
  border: 1px solid #50606f;
}

.brand-text {
  font-weight: 700;
  font-size: 1.02rem;
}

.brand-subline {
  margin: 0;
  color: #9fa7af;
  font-size: 0.85rem;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}

.admin-nav .nav-separator {
  width: 100%;
  margin: 8px 0 4px;
  border: 0;
  border-top: 1px solid #4b545c;
}

.admin-nav a {
  text-decoration: none;
  color: #c2c7d0;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
}

.admin-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-nav a.active {
  background: rgba(60, 141, 188, 0.24);
  color: #fff;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7f8c96;
  flex-shrink: 0;
}

.nav-icon {
  width: 14px;
  height: 14px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.nav-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.admin-nav a.active .nav-dot {
  background: #7fd0ff;
}

.admin-nav .nav-logout {
  margin-top: 4px;
  color: #ffd0d5;
  background: rgba(220, 53, 69, 0.12);
}

.admin-nav .nav-logout .nav-dot {
  background: #ff8a95;
}

.admin-nav .nav-logout:hover {
  background: rgba(220, 53, 69, 0.24);
  color: #fff;
}

.admin-main {
  min-width: 0;
}

.admin-shell {
  padding: 16px;
  display: grid;
  gap: 14px;
}

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

.admin-card {
  background: var(--panel);
  border: 1px solid #dfe3e7;
  border-radius: 3px;
  padding: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.admin-card h2,
.admin-card h3 {
  margin: 0 0 10px;
  font-weight: 600;
  color: #495057;
}

.admin-card.narrow {
  width: min(520px, 100%);
  margin: 48px auto 0;
}

.metric {
  margin: 0;
  font-size: 2rem;
  color: #1f5f83;
  font-weight: 700;
}

.metric-box {
  min-height: 126px;
  display: grid;
  align-content: space-between;
  gap: 8px;
  color: #fff;
  border: 0;
  border-radius: 4px;
  transition: transform 0.14s ease, filter 0.14s ease;
}

.metric-box:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.metric-box .metric {
  color: #fff;
  font-size: 2.15rem;
  line-height: 1;
}

.metric-box h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.metric-blue {
  background: linear-gradient(135deg, #3c8dbc, #2f78a0);
}

.metric-green {
  background: linear-gradient(135deg, #00a65a, #008d4c);
}

.metric-orange {
  background: linear-gradient(135deg, #f39c12, #d98b10);
}

.metric-red {
  background: linear-gradient(135deg, #dd4b39, #bf3f31);
}

.metric-cyan {
  background: linear-gradient(135deg, #00c0ef, #00a7d0);
}

.admin-form {
  display: grid;
  gap: 10px;
}

.admin-form.inline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  margin-bottom: 12px;
}

.admin-form label {
  display: grid;
  gap: 5px;
  color: #495057;
  font-size: 0.85rem;
  font-weight: 600;
}

.admin-form input,
.admin-form select {
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 7px 9px;
  font-size: 0.92rem;
  background: #fff;
  color: #495057;
}

.admin-form input:focus,
.admin-form select:focus {
  outline: none;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.18rem rgba(0, 123, 255, 0.16);
}

button {
  border: 1px solid var(--primary-strong);
  border-radius: 4px;
  padding: 7px 11px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

button:hover {
  background: #327ca7;
}

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

button.danger:hover {
  background: #c9303f;
}

.icon-only-btn {
  width: 31px;
  height: 31px;
  padding: 0;
  display: inline-grid;
  place-items: center;
}

.icon-only-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-items: center;
  width: 100%;
}

.action-row form {
  margin: 0;
  width: 100%;
}

.action-link {
  text-decoration: none;
  border: 1px solid #b5c4d0;
  border-radius: 4px;
  padding: 6px 8px;
  color: #2f5f7e;
  background: #f3f8fc;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.action-link:hover {
  background: #e7f1f9;
  border-color: #92adc1;
}

.action-link.icon-only {
  width: 31px;
  height: 31px;
  padding: 0;
  display: inline-grid;
  place-items: center;
}

.action-link.icon-only svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contacts-filter {
  margin: 12px 0;
}

.contacts-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-chip {
  border: 1px solid #cdd8df;
  border-radius: 999px;
  background: #fff;
  color: #41525f;
  padding: 6px 10px;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.contact-chip:hover {
  background: #f2f7fa;
}

.contact-chip.active {
  background: #dceef9;
  border-color: #7db2d3;
  color: #204e69;
}

.contacts-list {
  display: grid;
  gap: 12px;
}

.contacts-club {
  border: 1px solid #d8e0e7;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.contacts-club-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  background: #eef3f7;
  border-bottom: 1px solid #d8e0e7;
}

.contacts-club-title {
  display: grid;
  gap: 2px;
}

.contacts-club-head h3 {
  margin: 0;
  font-size: 1rem;
  color: #324351;
}

.contacts-club-head span {
  font-size: 0.83rem;
  color: #5f7382;
}

.contacts-club-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #d1dae2;
  padding: 2px;
}

.contacts-table-wrap {
  overflow-x: auto;
}

.contacts-table {
  min-width: 740px;
  table-layout: fixed;
}

.admin-table.contacts-table td {
  vertical-align: middle;
}

.contacts-table th:nth-child(1),
.contacts-table td:nth-child(1) {
  width: 22%;
}

.contacts-table th:nth-child(2),
.contacts-table td:nth-child(2) {
  width: 23%;
}

.contacts-table th:nth-child(3),
.contacts-table td:nth-child(3) {
  width: 23%;
}

.contacts-table th:nth-child(4),
.contacts-table td:nth-child(4) {
  width: 20%;
}

.contacts-table th:nth-child(5),
.contacts-table td:nth-child(5) {
  width: 12%;
}

.cell-field {
  display: block;
  width: 100%;
  height: 32px;
  line-height: 18px;
  padding: 6px 8px;
  border: 1px solid #cfd8df;
  border-radius: 4px;
  background: #fff;
  color: #3b4b57;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.age-empty-row td {
  background: #fbfdff;
}

.quick-add-hidden-form {
  display: none;
}

.quick-add-input {
  width: 100%;
  height: 32px;
  border: 1px solid #cfd8df;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 0.86rem;
}

.quick-add-btn {
  white-space: nowrap;
  width: 100%;
  height: 32px;
  padding: 6px 9px;
}

.inline-edit-row td {
  background: #f4f9fc;
  border-top: 0;
}

.inline-edit-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr auto auto;
  gap: 6px;
  align-items: center;
}

.inline-edit-meta {
  font-size: 0.83rem;
  color: #4d6270;
  font-weight: 600;
}

.inline-edit-form input {
  width: 100%;
  height: 32px;
  border: 1px solid #cfd8df;
  border-radius: 4px;
  padding: 6px 8px;
  font-size: 0.86rem;
}

.inline-edit-form button {
  white-space: nowrap;
  height: 32px;
  padding: 6px 9px;
}

.action-row {
  min-height: 32px;
}

.action-link.icon-only,
.icon-only-btn {
  width: 32px;
  height: 32px;
  min-height: 32px;
}

.action-row .action-link.icon-only,
.action-row .icon-only-btn {
  width: 100%;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: #fff;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid #e9ecef;
  padding: 8px;
  text-align: left;
  font-size: 0.89rem;
  vertical-align: top;
}

.admin-table th {
  background: #f7f7f7;
  color: #495057;
  font-weight: 700;
}

.admin-table tr:hover td {
  background: #fafbfd;
}

.flash {
  margin: 0 0 10px;
  border-radius: 4px;
  padding: 8px 10px;
  border: 1px solid transparent;
  font-weight: 600;
}

.flash.ok {
  background: var(--success-bg);
  border-color: var(--success-border);
  color: var(--success-text);
}

.flash.err {
  background: var(--error-bg);
  border-color: var(--error-border);
  color: var(--error-text);
}

.small-muted {
  margin: 4px 0 16px;
  color: #6b7a86;
  font-size: 0.9rem;
}

.bookings-card {
  padding: 16px;
}

.bookings-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.bookings-scope-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid #d6e1e9;
  background: #f3f8fc;
}

.bookings-scope-toggle a {
  text-decoration: none;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #426176;
}

.bookings-scope-toggle a:hover {
  background: #e6f0f8;
  color: #2d5670;
}

.bookings-scope-toggle a.active {
  background: linear-gradient(135deg, #3c8dbc, #2f78a0);
  color: #fff;
}

.bookings-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
}

.bookings-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto auto;
  align-items: end;
  gap: 8px;
  margin: 0 0 12px;
  padding: 10px;
  border: 1px solid #dbe6ee;
  border-radius: 10px;
  background: linear-gradient(180deg, #fbfdff, #f3f8fc);
}

.bookings-filters label {
  display: grid;
  gap: 5px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #5b7285;
  font-weight: 700;
}

.bookings-filters select {
  width: 100%;
  height: 36px;
  border: 1px solid #c8d7e3;
  border-radius: 8px;
  padding: 7px 32px 7px 10px;
  font-size: 0.86rem;
  appearance: none;
  background: #fff
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2358798f' d='M6 8L0 1.4 1.3 0 6 5.1 10.7 0 12 1.4z'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  color: #355263;
}

.bookings-filters select:focus {
  outline: none;
  border-color: #7eafd0;
  box-shadow: 0 0 0 3px rgba(60, 141, 188, 0.16);
}

.bookings-filters button {
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  white-space: nowrap;
}

.bookings-filter-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 13px;
  border: 1px solid #c9d8e3;
  border-radius: 8px;
  background: #f3f8fc;
  color: #2f607d;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.bookings-filter-reset:hover {
  background: #e7f1f9;
}

.bookings-stat {
  border: 1px solid #d8e5ee;
  border-radius: 8px;
  padding: 9px 10px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  display: grid;
  gap: 2px;
}

.bookings-stat span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6c8395;
  font-weight: 700;
}

.bookings-stat strong {
  font-size: 0.9rem;
  color: #2e4f64;
  font-weight: 700;
}

.bookings-table-wrap {
  overflow: auto;
  border: 1px solid #d9e4ec;
  border-radius: 8px;
}

.bookings-table {
  border: 0;
  margin: 0;
  min-width: 1080px;
}

.bookings-table th {
  white-space: nowrap;
  background: #f1f6fa;
}

.bookings-table td {
  vertical-align: middle;
}

.bookings-table td a {
  color: #255f81;
  text-decoration: none;
}

.bookings-table td a:hover {
  text-decoration: underline;
}

.bookings-table td:nth-child(1),
.bookings-table td:nth-child(2),
.bookings-table td:nth-child(10) {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.bookings-time {
  color: #355364;
  font-weight: 600;
}

.bookings-person {
  font-weight: 700;
  color: #2c495d;
}

.bookings-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid transparent;
}

.bookings-badge.is-training {
  background: #e9f4fb;
  border-color: #bdd9ec;
  color: #245a79;
}

.bookings-badge.is-spiel {
  background: #fef1e5;
  border-color: #f7c99d;
  color: #8a4b18;
}

.bookings-badge.is-club {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #eaf2f8;
  border-color: #c3d8e7;
  color: #214a66;
}

.bookings-badge.is-court {
  min-width: 64px;
  font-size: 0.71rem;
}

.bookings-badge.is-court.court-court1 {
  background: #e6f4ef;
  border-color: #b7dfcf;
  color: #1f6b52;
}

.bookings-badge.is-court.court-court2 {
  background: #e9f3ff;
  border-color: #bfd8f7;
  color: #245b94;
}

.bookings-badge.is-court.court-court3 {
  background: #fff4e8;
  border-color: #f7d4b0;
  color: #8c4f1f;
}

.bookings-badge.is-court.court-court4 {
  background: #f3edff;
  border-color: #d9ccf8;
  color: #5d4094;
}

.bookings-badge.is-court.court-kr1 {
  background: #e7f6fb;
  border-color: #b8dfed;
  color: #1f5f78;
}

.bookings-badge.is-court.court-kr2 {
  background: #eef8e6;
  border-color: #cfe6b8;
  color: #446b1d;
}

.bookings-badge.is-court.court-unknown {
  background: #f2f4f7;
  border-color: #d7dde4;
  color: #4d5c6a;
}

.bookings-badge.is-buchung {
  background: #edf7ec;
  border-color: #c9e5c5;
  color: #2f6d3a;
}

.bookings-badge.is-stamm {
  background: #f4eefc;
  border-color: #d8c8f2;
  color: #5b3f87;
}

.bookings-row-actions {
  width: 120px;
}

.bookings-row-actions form {
  margin: 0;
}

.bookings-empty {
  text-align: center;
  color: #607483;
  font-weight: 600;
  background: #fbfdff;
}

.bookings-delete-btn {
  width: 100%;
  height: 30px;
  padding: 0 10px;
  font-size: 0.8rem;
}

.stamm-add-box {
  border: 1px dashed #9bc5dd;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 14px;
  background: #f4fafd;
}

.stamm-add-box h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #35607c;
}

.stamm-add-form {
  display: grid;
  grid-template-columns: 120px 90px 90px 120px 1fr auto;
  gap: 8px;
  align-items: center;
}

.stamm-add-form select,
.stamm-add-form input,
.stamm-inline-form select,
.stamm-time-grid input,
.stamm-table td > select,
.stamm-table td > input {
  width: 100%;
  height: 32px;
  border: 1px solid #cfd8df;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.85rem;
  background: #fff;
}

.stamm-table-wrap {
  overflow-x: auto;
}

.stamm-table {
  min-width: 860px;
  table-layout: fixed;
}

.stamm-table th,
.stamm-table td {
  vertical-align: middle;
}

.stamm-table th:nth-child(1),
.stamm-table td:nth-child(1) { width: 12%; }
.stamm-table th:nth-child(2),
.stamm-table td:nth-child(2) { width: 19%; }
.stamm-table th:nth-child(3),
.stamm-table td:nth-child(3) { width: 14%; }
.stamm-table th:nth-child(4),
.stamm-table td:nth-child(4) { width: 37%; }
.stamm-table th:nth-child(5),
.stamm-table td:nth-child(5) { width: 18%; }

.stamm-time-grid {
  display: grid;
  grid-template-columns: 1fr 12px 1fr;
  gap: 6px;
  align-items: center;
}

.stamm-time-grid span {
  text-align: center;
  color: #7c8b97;
}

.stamm-dnd-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.stamm-dnd-day {
  border: 1px solid #dbe6ee;
  border-radius: 10px;
  padding: 8px;
  background: #f9fcff;
}

.stamm-dnd-day h4 {
  margin: 0 0 8px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #4a677c;
}

.stamm-dnd-table-wrap {
  overflow-x: auto;
}

.stamm-dnd-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  --stamm-slot-height: 26px;
}

.stamm-dnd-table th,
.stamm-dnd-table td {
  border: 1px solid #e0e9f0;
  padding: 6px;
  vertical-align: top;
  background: #fff;
}

.stamm-dnd-table td {
  padding: 0;
  position: relative;
}

.stamm-dnd-table thead th {
  font-size: 0.74rem;
  font-weight: 700;
  color: #49667c;
  background: #f1f7fb;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.stamm-dnd-table tbody th {
  width: 108px;
  font-size: 0.72rem;
  color: #4a6578;
  background: #f7fbfe;
  line-height: 1.1;
}

.stamm-day-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}

.stamm-table-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 12px;
}

.stamm-new-btn {
  order: 2;
  height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #2f78a0;
  background: linear-gradient(135deg, #3c8dbc, #2f78a0);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.stamm-new-btn:hover {
  background: linear-gradient(135deg, #347fa8, #286b90);
}

.stamm-day-selector--table {
  order: 1;
  margin: 0;
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #dbe7ef;
  border-radius: 10px;
  background: #f8fbfd;
}

.stamm-day-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}

.stamm-day-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border: 1px solid #c9d9e5;
  border-radius: 8px;
  background: #fff;
  color: #3f5f74;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
}

.stamm-day-btn:hover {
  border-color: #2f78a0;
  color: #2f78a0;
}

.stamm-day-current {
  font-size: 0.85rem;
  color: #35586f;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.stamm-day-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #cadbe8;
  background: #fff;
  color: #436176;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
}

.stamm-day-chip.active {
  border-color: #2f78a0;
  background: linear-gradient(135deg, #3c8dbc, #2f78a0);
  color: #fff;
}

.stamm-dnd-slot-wrap + .stamm-dnd-slot-wrap {
  margin-top: 8px;
}

.stamm-dnd-slot-label {
  font-size: 0.75rem;
  color: #5c7386;
  margin: 0 0 3px;
}

.stamm-dropzone {
  border: 0;
  border-radius: 0;
  min-height: var(--stamm-slot-height);
  padding: 0;
  background: transparent;
  transition: border-color 120ms ease, background 120ms ease;
}

.stamm-dnd-table td .stamm-dropzone {
  height: 100%;
}

.stamm-dnd-table td:not(.stamm-slot-filled) {
  background: #fbfdfb;
}

.stamm-dnd-table td:not(.stamm-slot-filled) .stamm-dropzone {
  min-height: var(--stamm-slot-height);
}

.stamm-slot-filled {
  background: #f7faf6;
  padding: 0;
}

.stamm-slot-filled .stamm-dropzone {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 5px;
  min-height: 0;
  height: 100%;
  border: 0;
  border-radius: 0;
  padding: 6px;
  background: #f7faf6;
  overflow: hidden;
}

.stamm-dropzone.is-over {
  border-color: #2f78a0;
  background: #e9f4fb;
}

.stamm-card {
  --team-accent: #2f78a0;
  position: relative;
  border: 1px solid #d4e2ec;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border-radius: 8px;
  padding: 5px 7px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(47, 120, 160, 0.08);
  border-left: 4px solid var(--team-accent);
}

.stamm-card.is-filled {
  position: relative;
  inset: auto;
  border-radius: 8px;
  border-top: 1px solid #d3ddd1;
  border-right: 1px solid #d3ddd1;
  border-bottom: 1px solid #d3ddd1;
  border-left: 5px solid var(--team-accent);
  min-height: 0;
  height: auto;
  padding: 8px 10px;
  box-shadow: 0 1px 2px rgba(27, 45, 35, 0.1);
  background: #ffffff;
  overflow: visible;
}

.stamm-dropzone.has-multiple .stamm-card.is-filled {
  flex: 1 1 0;
  min-height: 0;
}

.stamm-dropzone.has-multiple .stamm-card.is-filled {
  padding: 6px 8px;
}

.stamm-dropzone.has-multiple .stamm-card.is-filled p {
  font-size: 0.77rem;
  line-height: 1.2;
  margin-bottom: 2px;
}

.stamm-dropzone.has-multiple .stamm-card.is-filled span {
  font-size: 0.81rem;
  line-height: 1.2;
}

.stamm-dropzone.has-multiple .stamm-card.is-filled .stamm-card-duration {
  font-size: 0.72rem;
  margin-top: 2px;
}

.stamm-dropzone:not(.has-multiple) .stamm-card.is-filled {
  height: 100%;
}

.stamm-slot-filled .stamm-card p {
  font-size: 0.8rem;
  line-height: 1.3;
  margin-bottom: 4px;
}

.stamm-slot-filled .stamm-card span {
  font-size: 0.86rem;
  line-height: 1.3;
}

.stamm-slot-filled .stamm-card-duration {
  font-size: 0.75rem;
  margin-top: 5px;
}

.stamm-card.is-dragging {
  opacity: 0.6;
}

.stamm-quick-edit {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
}

.stamm-quick-edit[hidden] {
  display: none;
}

.stamm-quick-edit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 43, 53, 0.45);
}

.stamm-quick-edit-dialog {
  position: relative;
  width: min(520px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid #d7e2ea;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 18px 50px rgba(18, 41, 56, 0.24);
}

.stamm-quick-edit-dialog h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #2f4454;
}

.stamm-quick-edit-form {
  display: grid;
  gap: 8px;
}

.stamm-quick-edit-form label {
  display: grid;
  gap: 4px;
  font-size: 0.8rem;
  color: #4b6374;
  font-weight: 700;
}

.stamm-quick-edit-form input,
.stamm-quick-edit-form select {
  height: 34px;
  border: 1px solid #cfd9e0;
  border-radius: 7px;
  padding: 6px 8px;
  font-size: 0.88rem;
}

.stamm-quick-edit-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.stamm-quick-edit-actions {
  display: flex;
  gap: 8px;
}

.stamm-quick-delete-form {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e2eaf0;
}

.modal-open {
  overflow: hidden;
}

.stamm-card p {
  margin: 0;
  font-size: 0.74rem;
  color: #35556a;
  font-weight: 700;
}

.stamm-card span {
  display: block;
  margin-top: 0;
  font-size: 0.78rem;
  color: #2f3d49;
  line-height: 1.25;
}

.stamm-card-duration {
  display: inline-block;
  margin-top: 4px;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  color: #1d4158;
  background: color-mix(in srgb, var(--team-accent) 14%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--team-accent) 35%, #cfe0eb);
}

.stamm-card.is-filled .stamm-card-duration {
  background: color-mix(in srgb, var(--team-accent) 18%, #ffffff);
}

.admin-main-login {
  display: grid;
  min-height: 100vh;
}

.admin-shell-login {
  min-height: 100vh;
  place-items: center;
  align-content: center;
}

.login-stage {
  width: min(560px, 100%);
  display: grid;
  gap: 12px;
  justify-items: center;
}

.login-intro {
  text-align: center;
}

.login-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  background: #fff;
  border: 1px solid #d8e1e8;
  box-shadow: 0 10px 24px rgba(47, 120, 160, 0.18);
  animation: loginIconEnter 420ms ease-out both, loginIconFloat 3.2s ease-in-out 520ms infinite;
}

@keyframes loginIconEnter {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes loginIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .login-icon {
    animation: none;
  }
}

.login-intro h1 {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 700;
  color: #2f3a45;
}

.login-intro p {
  margin: 6px 0 0;
  color: #6c757d;
  font-size: 1rem;
}

.login-card {
  margin: 0;
  width: 100%;
}

.login-card h2,
.login-card .flash,
.login-card .admin-form,
.login-card .admin-form label {
  text-align: center;
}

.login-card .admin-form button {
  justify-self: center;
  min-width: 180px;
}

.v2-admins-card {
  border-radius: 10px;
}

.v2-club-admin-form {
  grid-template-columns: minmax(170px, 1.1fr) minmax(150px, 1fr) minmax(190px, 1.2fr) minmax(170px, 1fr) auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid #dbe6ee;
  border-radius: 10px;
  background: linear-gradient(180deg, #fbfdff, #f3f8fc);
}

.v2-club-admin-form .v2-create-btn {
  height: 36px;
  align-self: end;
  white-space: nowrap;
  border-radius: 8px;
}

.v2-club-admin-table td {
  vertical-align: middle;
}

.v2-club-admin-table th {
  background: linear-gradient(180deg, #f6faff, #eef5fb);
  color: #3f5d73;
}

.v2-club-admin-table tbody tr:nth-child(even) td {
  background: #fcfeff;
}

.v2-club-admin-table tbody tr:hover td {
  background: #f4f9fd;
}

.v2-admin-email,
.v2-admin-created {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.v2-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.v2-status-pill.is-active {
  background: #e9f6ef;
  border-color: #b9dfc8;
  color: #1d6a42;
}

.v2-status-pill.is-inactive {
  background: #f7ecec;
  border-color: #e7caca;
  color: #8c3a3a;
}

.v2-actions-stack {
  display: grid;
  gap: 6px;
  min-width: 235px;
}

.v2-action-form {
  margin: 0;
  display: grid;
  gap: 6px;
}

.v2-action-form:not(.v2-reset-form) {
  grid-template-columns: 1fr;
}

.v2-reset-form {
  grid-template-columns: minmax(0, 1fr) auto;
}

.v2-action-form input[type="password"] {
  height: 32px;
  border: 1px solid #c8d7e3;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.84rem;
}

.v2-action-form input[type="password"]:focus {
  outline: none;
  border-color: #84b9dc;
  box-shadow: 0 0 0 3px rgba(85, 147, 190, 0.18);
}

.v2-action-btn {
  width: 100%;
  height: 32px;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.v2-toggle-btn {
  background: linear-gradient(135deg, #3c8dbc, #2f78a0);
  border-color: #2f78a0;
}

.v2-toggle-btn:hover {
  background: linear-gradient(135deg, #347fa8, #286b90);
}

.v2-reset-form .v2-action-btn {
  background: #4a95bf;
  border-color: #3f86ad;
}

.v2-reset-form .v2-action-btn:hover {
  background: #3f86ad;
}

.v2-action-btn.danger {
  background: #dc3545;
  border-color: #b82a39;
}

.v2-action-btn.danger:hover {
  background: #c9303f;
}

@media (max-width: 1180px) {
  .v2-club-admin-form {
    grid-template-columns: 1fr 1fr;
  }

  .v2-club-admin-form .v2-create-btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .v2-club-admin-form {
    grid-template-columns: 1fr;
  }

  .v2-actions-stack {
    min-width: 200px;
  }

  .v2-reset-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .admin-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-form.inline {
    grid-template-columns: 1fr 1fr;
  }

  .bookings-stats {
    grid-template-columns: 1fr 1fr;
  }

  .bookings-filters {
    grid-template-columns: 1fr 1fr;
  }

  .bookings-filters button,
  .bookings-filter-reset {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .admin-app {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #2a3035;
  }

  .admin-nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .admin-shell {
    padding: 10px;
  }

  .login-intro h1 {
    font-size: 1.55rem;
  }

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

  .admin-form.inline {
    grid-template-columns: 1fr;
  }

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

  .bookings-scope-toggle {
    width: 100%;
    justify-content: center;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }

  .inline-edit-form {
    grid-template-columns: 1fr;
  }

  .stamm-add-form {
    grid-template-columns: 1fr;
  }

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

  .stamm-new-btn {
    width: 100%;
  }

  .bookings-stats {
    grid-template-columns: 1fr;
  }

  .bookings-filters {
    grid-template-columns: 1fr;
  }

  .bookings-filters button,
  .bookings-filter-reset {
    width: 100%;
  }
}

/* ─── Dashboard ──────────────────────────────────────────────────────────── */

/* Metric-Card: Sub-Zeile */
.metric-box small {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 3px;
  font-weight: 500;
}

/* 4 Karten nebeneinander auf dem Dashboard */
.dash-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .dash-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .dash-metrics {
    grid-template-columns: 1fr;
  }
}

/* Abschnitts-Kopfzeile (Titel + Badge) */
.dash-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.dash-section-head h2 {
  margin: 0;
}

/* Spielplan-Tabelle */
.dash-today-table {
  min-width: 640px;
}

/* Leer-Zustand */
.dash-empty {
  color: #607483;
  font-size: 0.9rem;
  margin: 8px 0 4px;
}

/* Anlagen-Badge (Playa / Keltenhof) */
.dash-loc-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid transparent;
}

.dash-loc-badge.loc-playa {
  background: #e6f4fb;
  border-color: #b8d9ee;
  color: #1d5c7b;
}

.dash-loc-badge.loc-keltenhof {
  background: #edf7ec;
  border-color: #c4e3be;
  color: #2a5e35;
}

/* Balken-Diagramme */
.dash-bars {
  display: grid;
  gap: 9px;
}

.dash-bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 56px;
  align-items: center;
  gap: 8px;
}

.dash-bar-label {
  font-size: 0.82rem;
  color: #3a5061;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-bar-track {
  height: 10px;
  border-radius: 999px;
  background: #e4edf3;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.45s ease;
  min-width: 4px;
}

.dash-bar-blue   { background: linear-gradient(90deg, #3c8dbc, #5aabdb); }
.dash-bar-orange { background: linear-gradient(90deg, #f39c12, #f7ba56); }

.dash-bar-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: #2e4d63;
  text-align: right;
  white-space: nowrap;
}

.dash-bar-pct {
  font-weight: 400;
  color: #7a909f;
  font-size: 0.74rem;
}

/* ── Dashboard: KPI-Streifen ─────────────────────────────────────────────── */
.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}
.dash-kpi {
  border: 1px solid #d8e5ee;
  border-radius: 8px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #fff, #f6fbff);
  display: grid;
  gap: 3px;
}
.dash-kpi span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #6c8395;
  font-weight: 700;
}
.dash-kpi strong {
  font-size: 1rem;
  color: #2e4f64;
  font-weight: 700;
}

/* ── Dashboard: Auslastungskarten ────────────────────────────────────────── */
.dash-util-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}
.dash-util-card {
  border: 1px solid #d8e5ee;
  border-radius: 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #fff, #f6fbff);
}
.dash-util-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.dash-util-head strong { font-size: 0.95rem; color: #2d4558; font-weight: 700; }
.dash-util-pct { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.dash-util-bar-track {
  height: 10px;
  border-radius: 999px;
  background: #e4edf3;
  overflow: hidden;
  margin-bottom: 8px;
}
.dash-util-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width .45s ease;
  min-width: 4px;
}
.dash-util-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  font-size: 0.78rem;
  color: #5a7385;
}

/* ── Dashboard: Vereinsstatistik (breites Label) ─────────────────────────── */
.dash-bar-row--club .dash-bar-label { width: 130px; }

.dash-club-list {
  display: grid;
  gap: 8px;
}

.dash-club-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dash-club-panel {
  border: 1px solid #d8e5ee;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.dash-club-panel-title {
  margin: 0 0 10px;
}

.dash-club-overview {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.dash-club-chart-stack {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.dash-club-pie-wrap {
  width: 176px;
  height: 176px;
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
}

.dash-club-pie {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--club-pie, conic-gradient(#e9eef3 0% 100%));
  box-shadow: inset 0 0 0 1px #d8e2ea, 0 8px 18px rgba(35, 66, 87, 0.12);
}

.dash-club-pie::after {
  content: "";
  position: absolute;
  inset: 27%;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: inset 0 0 0 1px #dfe7ed;
}

.dash-club-pie-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}

.dash-club-pie-center strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.15;
  color: #2f4b5e;
  font-weight: 800;
  max-width: 78px;
  word-break: normal;
}

.dash-club-pie-center span {
  display: block;
  margin-top: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #678092;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dash-club-total {
  display: grid;
  gap: 2px;
  width: 100%;
  justify-items: center;
  padding: 8px 10px;
  border: 1px solid #d6e3ec;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.dash-club-total span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6c8292;
}

.dash-club-total strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: #23465d;
}

.dash-club-legend {
  display: grid;
  gap: 7px;
  align-content: start;
}

.dash-club-legend-row {
  display: grid;
  gap: 5px;
  border: 1px solid #d6e3ec;
  border-radius: 9px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  padding: 7px 9px;
}

.dash-club-legend-head {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
}

.dash-club-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(60, 141, 188, 0.08);
}

.dash-club-legend-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2f4b5e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-club-legend-time {
  font-size: 0.76rem;
  font-weight: 700;
  color: #36576c;
}

.dash-club-legend-pct {
  min-width: 44px;
  text-align: right;
  font-size: 0.74rem;
  font-weight: 800;
  color: #1f3f55;
}

.dash-club-legend-bar {
  height: 5px;
  border-radius: 999px;
  background: #e6eef4;
  overflow: hidden;
}

.dash-club-legend-bar-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 220ms ease;
}

.dash-club-item {
  --club-accent: #3c8dbc;
  border: 1px solid #d8e5ee;
  border-left: 4px solid var(--club-accent);
  border-radius: 8px;
  padding: 8px 10px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
}

.dash-club-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}

.dash-club-rank {
  font-size: 0.76rem;
  font-weight: 800;
  color: #5f7384;
}

.dash-club-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2f4b5e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-club-time {
  font-size: 0.84rem;
  font-weight: 800;
  color: #1f3f55;
}

.dash-club-progress {
  height: 8px;
  border-radius: 999px;
  background: #e4edf3;
  overflow: hidden;
}

.dash-club-progress-fill {
  height: 100%;
  min-width: 3px;
  border-radius: 999px;
  background: var(--club-accent);
  transition: width 0.45s ease;
}

.dash-club-meta {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.76rem;
  color: #61798b;
  font-weight: 600;
}

@media (max-width: 1400px) {
  .dash-club-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .dash-club-overview {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dash-club-pie-wrap {
    width: min(180px, 100%);
    height: min(180px, 100vw - 96px);
    justify-self: center;
  }

  .dash-club-chart-stack {
    width: min(220px, 100%);
    justify-self: center;
  }

  .dash-club-total {
    width: 100%;
  }

  .dash-club-legend-head {
    grid-template-columns: 12px minmax(0, 1fr) auto;
  }

  .dash-club-legend-time {
    justify-self: end;
  }

  .dash-club-legend-pct {
    grid-column: 2 / 4;
    justify-self: end;
  }
}

/* ── Dashboard: Tages-Auslastungstabelle ─────────────────────────────────── */
.dash-daily-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 14px;
}

.dash-daily-panel {
  border: 1px solid #d8e5ee;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.dash-daily-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.dash-daily-panel-head .small-muted {
  margin: 0;
}

.dash-daily-wrap {
  border-radius: 12px;
  border-color: #d7e4ed;
  background: #fff;
}

.dash-daily-table {
  min-width: 100%;
  border: 0;
  margin: 0;
}

.dash-daily-table th {
  background: #f3f8fc;
  color: #486070;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
}

.dash-daily-table td {
  vertical-align: middle;
  text-align: center;
}

.dash-daily-weekday {
  font-size: 0.82rem;
  font-weight: 700;
  color: #5f7382;
}

.dash-daily-table--playa {
  min-width: 560px;
}

.dash-daily-table--keltenhof {
  min-width: 360px;
}

.dash-daily-sep { border-left: 2px solid #d6e1e9 !important; }
.dash-daily-cell {
  text-align: center;
  vertical-align: middle;
  padding: 8px 6px;
}
.dash-util-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}
.dash-daily-empty { color: #c4cdd5; font-size: 0.8rem; }

@media (max-width: 1180px) {
  .dash-daily-split {
    grid-template-columns: 1fr;
  }
}

