.match-title {
  border-radius: 18px;
  border: 3px solid var(--bs-info);
  background: var(--bs-info);
  margin-top: 10px;
  font-size: 12px;
}

.player-header {
  border-radius: 18px;
  background: var(--bs-success);
  border: 3px solid var(--bs-success);
  font-size: 12px;
  margin-bottom: 6px;
}

.player-name {
  text-align: center;
  border: 2px solid var(--bs-primary);
  border-radius: 18px;
  font-size: 12px;
  margin-bottom: 6px;
}

.player-info {
  text-align: center;
  border: 2px solid var(--bs-primary);
  border-radius: 18px;
  font-size: 12px;
  margin-bottom: 6px;
  background: var(--bs-gray-300);
}

.player-info-line {
  margin-bottom: 2px;
}

.player-status {
  font-size: 12px;
  margin-bottom: 6px;
}

.player-button {
  font-size: 12px;
  margin: 3px;
}

.player-name-bkg {
  background: var(--bs-gray-300);
}

.player-name-appowner-bkg {
  background: var(--bs-orange);
}

.player-name-no-player-bkg {
  background: var(--bs-highlight-bg);
}

.group-title {
  border-radius: 18px;
  border: 3px solid var(--bs-info);
  background: var(--bs-info);
  margin-top: 10px;
  font-size: 12px;
}

.group-name-row-rb {
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.group-title-chkbx {
  border-radius: 18px;
  border: 3px solid var(--bs-info);
  background: var(--bs-info);
  font-size: 12px;
}

.group-member-role {
  min-width: 8ch;
  text-align: center;
  border: 2px solid var(--bs-primary);
  border-radius: 18px;
  font-size: 12px;
}

.choices.is-invalid .choices__inner {
  border-color: #dc3545;
}

.choices.is-valid .choices__inner {
  border-color: #198754;
}

.choices.is-invalid .choices__inner {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.choices.is-valid .choices__inner {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.away-dates {
  white-space: nowrap;
}

/* Banner for Dev/testing; and for missing communication channel */

#banner-wrap {
  position: sticky;
  top: 0;
  z-index: 1020;
}

/* Make it visually align with your bordered navbar vibe */

#comm-banner {
  border-radius: 0.5rem;
}

/* Subtle red tint across the whole page */

body.dev::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 0, 0, 0.04);
  pointer-events: none;
  z-index: 1000;
}

