@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  line-height: 1.5;
}

body {
  margin: 0;
  line-height: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

:root {
  --background: #fafafa;
  --foreground: #1a1a1a;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.25;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
}

a {
  color: #e8a030;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #d08a1a;
  text-decoration: underline;
}

code, kbd, samp, pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 80rem;
  margin-inline: auto;
  padding: 0.5rem 0.75rem;
}
@media (min-width: 768px) {
  .site-header__inner {
    padding: 0.75rem 1rem;
    gap: 1rem;
  }
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
@media (min-width: 768px) {
  .site-header__brand {
    gap: 0.75rem;
  }
}
.site-header__logo {
  display: block;
  height: 1.75rem;
  width: auto;
}
@media (min-width: 768px) {
  .site-header__logo {
    height: 2.25rem;
  }
}
.site-header__logo-link {
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .site-header__logo-text {
    font-size: 1.25rem;
  }
}
.site-header__logo-text::first-letter {
  color: #e8a030;
}
.site-header__divider {
  width: 1px;
  height: 1.25rem;
  background-color: #d1d5db;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .site-header__divider {
    height: 1.5rem;
  }
}
.site-header__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: #e8a030;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .site-header__link {
    font-size: 0.875rem;
  }
}
.site-header__link:hover {
  text-decoration: underline;
}
.site-header__link--muted {
  color: #6b7280;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}
.site-header__link--muted:hover {
  color: #1a1a1a;
}
.site-header__link--impersonating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
  border-radius: 9999px;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600;
  font-size: 0.75rem;
}
.site-header__link--impersonating::before {
  content: "👤";
}
.site-header__link--impersonating:hover {
  background-color: #f59e0b;
  color: #ffffff;
  text-decoration: none;
  border-color: #f59e0b;
}
.site-header__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: #6b7280;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .site-header__meta {
    gap: 1rem;
    font-size: 0.875rem;
  }
}
.site-header__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site-header__status-text {
  display: none;
}
@media (min-width: 640px) {
  .site-header__status-text {
    display: inline;
  }
}
.site-header__status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #22c55e;
  flex-shrink: 0;
}

.site-main {
  max-width: 80rem;
  margin-inline: auto;
  padding: 1rem 0.75rem;
}
@media (min-width: 768px) {
  .site-main {
    padding: 1.5rem 1rem;
  }
}

.page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .page-header {
    margin-bottom: 1.5rem;
  }
}
.page-header__title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-header__title {
    font-size: 1.5rem;
  }
}
.page-header__subtitle {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #6b7280;
}
@media (min-width: 768px) {
  .page-header__subtitle {
    font-size: 0.875rem;
  }
}
.page-header__meta {
  font-size: 0.75rem;
  color: #9ca3af;
  white-space: nowrap;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin-inline: auto;
  padding: 1rem 1rem;
  font-size: 0.75rem;
  color: #9ca3af;
  border-top: 1px solid #f3f4f6;
}
.site-footer__version {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: #d1d5db;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  color: #374151;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.btn:hover {
  border-color: #e8a030;
  color: #e8a030;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(232, 160, 48, 0.35);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary {
  background-color: #e8a030;
  border-color: #e8a030;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #d08a1a;
  border-color: #d08a1a;
  color: #ffffff;
}
.btn--dark {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}
.btn--dark:hover {
  background-color: #1f2937;
  border-color: #1f2937;
  color: #ffffff;
}
.btn--ghost {
  background-color: transparent;
  border-color: transparent;
}
.btn--danger {
  background-color: #ffffff;
  border-color: #fecaca;
  color: #ef4444;
}
.btn--danger:hover {
  background-color: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
}
.btn--sm {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
}
.btn--lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}

.card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.card--hoverable:hover {
  border-color: #e8a030;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.card--danger {
  border-color: #fecaca;
  background-color: #fef2f2;
}
.card--danger .card__title {
  color: #eb1515;
}
.card--danger .card__body {
  color: #ed2d2d;
}
.card__header {
  margin-bottom: 1rem;
}
.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
}
.card__subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.card__body {
  font-size: 0.875rem;
  color: #374151;
}
.card__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.form__hint {
  font-size: 0.75rem;
  color: #6b7280;
}
.form__error {
  font-size: 0.75rem;
  color: #ef4444;
}

.form-control,
input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=search],
input[type=tel],
input[type=url],
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.form-control::placeholder,
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #9ca3af;
}
.form-control:hover,
input[type=text]:hover,
input[type=email]:hover,
input[type=password]:hover,
input[type=number]:hover,
input[type=search]:hover,
input[type=tel]:hover,
input[type=url]:hover,
textarea:hover,
select:hover {
  border-color: #9ca3af;
}
.form-control:focus, .form-control:focus-visible,
input[type=text]:focus,
input[type=text]:focus-visible,
input[type=email]:focus,
input[type=email]:focus-visible,
input[type=password]:focus,
input[type=password]:focus-visible,
input[type=number]:focus,
input[type=number]:focus-visible,
input[type=search]:focus,
input[type=search]:focus-visible,
input[type=tel]:focus,
input[type=tel]:focus-visible,
input[type=url]:focus,
input[type=url]:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible {
  outline: none;
  border-color: #e8a030;
  box-shadow: 0 0 0 3px rgba(232, 160, 48, 0.15);
}
.form-control:disabled,
input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=number]:disabled,
input[type=search]:disabled,
input[type=tel]:disabled,
input[type=url]:disabled,
textarea:disabled,
select:disabled {
  background-color: #f9fafb;
  color: #6b7280;
  cursor: not-allowed;
}

textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-error,
ul.form-error-message,
.form-control-error {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  color: #ef4444;
}

.form-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

fieldset.form__group {
  border: 0;
  padding: 0;
  margin: 0;
}
fieldset.form__group > legend {
  padding: 0;
  margin-bottom: 0.5rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}
.form-check input[type=checkbox],
.form-check input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.125rem 0 0 0;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-grid;
  place-content: center;
}
.form-check input[type=checkbox]::before,
.form-check input[type=radio]::before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  transform: scale(0);
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.form-check input[type=checkbox]:hover,
.form-check input[type=radio]:hover {
  border-color: #e8a030;
}
.form-check input[type=checkbox]:checked,
.form-check input[type=radio]:checked {
  background-color: #e8a030;
  border-color: #e8a030;
}
.form-check input[type=checkbox]:checked::before,
.form-check input[type=radio]:checked::before {
  transform: scale(1);
}
.form-check input[type=checkbox]:focus-visible,
.form-check input[type=radio]:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(232, 160, 48, 0.35);
}
.form-check input[type=radio] {
  border-radius: 9999px;
}
.form-check input[type=radio]::before {
  border-radius: 9999px;
  clip-path: none;
}
.form-check__label {
  flex: 1;
}

.alert {
  padding: 0.75rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.alert--success {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
  color: #17843f;
}
.alert--danger {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #eb1515;
}
.alert--warning {
  background-color: #fffbeb;
  border-color: #fde68a;
  color: #ac6f07;
}
.alert--info {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 9999px;
  background-color: #f3f4f6;
  color: #374151;
}
.badge--brand {
  background-color: rgba(232, 160, 48, 0.1);
  color: #d08a1a;
}
.badge--success {
  background-color: #f0fdf4;
  color: #17843f;
}
.badge--danger {
  background-color: #fef2f2;
  color: #eb1515;
}
.badge--warning {
  background-color: #fffbeb;
  color: #ac6f07;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .filter-pills {
    margin-bottom: 1.5rem;
  }
}

.filter-pill {
  padding: 0.25rem 0.75rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  color: #4b5563;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) {
  .filter-pill {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
  }
}
.filter-pill:hover {
  border-color: #e8a030;
  color: #e8a030;
}
.filter-pill--active {
  background-color: #e8a030;
  border-color: #e8a030;
  color: #ffffff;
}
.filter-pill--active:hover {
  background-color: #d08a1a;
  border-color: #d08a1a;
  color: #ffffff;
}
.filter-pill:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(232, 160, 48, 0.35);
}

.match-day {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .match-day {
    margin-bottom: 2rem;
  }
}
.match-day__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .match-day__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}
.match-day__date {
  font-size: 0.75rem;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 0.5rem;
}
@media (min-width: 768px) {
  .match-day__date {
    font-size: 0.875rem;
  }
}

.match-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .match-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .match-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.match-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}
.match-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}
.match-card__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  background-color: #f9fafb;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #6b7280;
}
.match-card__header > span:nth-child(2) {
  text-align: center;
  color: #9ca3af;
}
.match-card__header > span:nth-child(3) {
  text-align: right;
}
.match-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem;
}
@media (min-width: 768px) {
  .match-card__teams {
    gap: 0.75rem;
    padding: 1rem;
  }
}
.match-card__team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .match-card__team {
    gap: 0.75rem;
  }
}
.match-card__team--right {
  justify-content: flex-end;
  text-align: right;
}
.match-card__logo {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}
@media (min-width: 768px) {
  .match-card__logo {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.match-card__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
@media (min-width: 768px) {
  .match-card__name {
    font-size: 0.875rem;
  }
}
.match-card__vs {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 300;
  color: #d1d5db;
}
@media (min-width: 768px) {
  .match-card__vs {
    font-size: 1.125rem;
  }
}
.match-card__pipeline {
  margin-top: auto;
  padding: 0.75rem;
  border-top: 1px solid #f3f4f6;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .match-card__pipeline {
    padding: 0.75rem 1rem 1rem;
  }
}

.pipeline-item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.pipeline-item__dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #d1d5db;
}
.pipeline-item--done {
  color: #17843f;
}
.pipeline-item--done .pipeline-item__dot {
  background-color: #22c55e;
}
.pipeline-item--progress {
  color: #b45309;
}
.pipeline-item--progress .pipeline-item__dot {
  background-color: #f59e0b;
  animation: pipeline-pulse 1.5s ease-in-out infinite;
}
.pipeline-item--waiting {
  color: #9ca3af;
}
.pipeline-item--waiting .pipeline-item__dot {
  background-color: #d1d5db;
}

@keyframes pipeline-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.data-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.data-table thead th {
  text-align: left;
  font-weight: 600;
  color: #6b7280;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}
.data-table tbody td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
  vertical-align: middle;
}
.data-table tbody tr:last-child td {
  border-bottom: 0;
}
.data-table tbody tr:hover {
  background-color: #f9fafb;
}
.data-table th.data-table__actions {
  text-align: right;
}
.data-table td.data-table__actions {
  text-align: right;
}
.data-table td.data-table__actions > * {
  vertical-align: middle;
}
.data-table td.data-table__actions .btn,
.data-table td.data-table__actions .data-table__delete-form {
  display: inline-flex;
  align-items: center;
}
.data-table td.data-table__actions .data-table__delete-form {
  margin-left: 0.5rem;
}
.data-table__delete-form {
  display: inline;
}
.data-table__empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #9ca3af;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #e8a030, #d08a1a);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  text-transform: uppercase;
  user-select: none;
}
.avatar--lg {
  width: 4rem;
  height: 4rem;
  font-size: 1.25rem;
}
.avatar--sm {
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
}

.form-section {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  overflow: hidden;
}
.form-section__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f3f4f6;
  background-color: #f9fafb;
}
.form-section__title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.form-section__hint {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  color: #6b7280;
}
.form-section__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .form-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .form-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.meta-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.meta-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.meta-list__item:first-child {
  padding-top: 0;
}
.meta-list__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.meta-list__item dt {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}
.meta-list__item dd {
  font-size: 0.875rem;
  color: #1a1a1a;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.user-menu {
  position: relative;
}
.user-menu > summary {
  list-style: none;
}
.user-menu > summary::-webkit-details-marker {
  display: none;
}
.user-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.user-menu__trigger:hover {
  background-color: #f3f4f6;
}
.user-menu__trigger:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(232, 160, 48, 0.35);
}
.user-menu__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}
@media (min-width: 640px) {
  .user-menu__name {
    display: inline;
  }
}
.user-menu__chevron {
  font-size: 0.75rem;
  color: #9ca3af;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.user-menu[open] .user-menu__chevron {
  transform: rotate(180deg);
}
.user-menu__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 16rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 0.5rem;
  z-index: 60;
  animation: user-menu-fade 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.user-menu__header {
  padding: 0.75rem;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 0.5rem;
}
.user-menu__email {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
  word-break: break-all;
}
.user-menu__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.5rem;
}
.user-menu__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.user-menu__item:hover {
  background-color: #f9fafb;
  color: #1a1a1a;
  text-decoration: none;
}
.user-menu__item--danger {
  color: #ef4444;
}
.user-menu__item--danger:hover {
  background-color: #fef2f2;
  color: #eb1515;
}
.user-menu__divider {
  border: 0;
  border-top: 1px solid #f3f4f6;
  margin: 0.5rem 0;
}

@keyframes user-menu-fade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.team-logo {
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
}
.team-logo--sm {
  width: 1.25rem;
  height: 1.25rem;
}
.team-logo--lg {
  width: 3.5rem;
  height: 3.5rem;
}

.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.team-badge__name {
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.competition-logo {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  flex-shrink: 0;
  vertical-align: middle;
}
.competition-logo--sm {
  width: 1rem;
  height: 1rem;
}
.competition-logo--lg {
  width: 2.5rem;
  height: 2.5rem;
}

.venue-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #374151;
}
.venue-info__name {
  font-weight: 600;
  color: #1a1a1a;
}
.venue-info__meta {
  font-size: 0.75rem;
  color: #6b7280;
}

.analyses {
  margin-bottom: 1.5rem;
}
.analyses__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.analyses__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.analyses__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.analysis-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.analysis-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.analysis-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f3f4f6;
  background-color: #f9fafb;
}
.analysis-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.analysis-card__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}
.analysis-card__name {
  font-weight: 600;
  color: #1a1a1a;
}
.analysis-card__bet {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
.analysis-card__rate {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.875rem;
}
.analysis-card__rate--up {
  color: #1a9a49;
}
.analysis-card__rate--down {
  color: #ef4444;
}
.analysis-card__body {
  padding: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #374151;
  white-space: normal;
}
.analysis-card__body br {
  display: block;
  content: "";
  margin-top: 0.5rem;
}
.analysis-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #f3f4f6;
  background-color: #f9fafb;
  font-size: 0.75rem;
  color: #6b7280;
}
.analysis-card__metric {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.analysis-card__metric--money {
  color: #d08a1a;
  font-weight: 600;
}
.analysis-card__link {
  margin-left: auto;
  color: #e8a030;
  font-weight: 500;
  text-decoration: none;
}
.analysis-card__link:hover {
  color: #d08a1a;
  text-decoration: underline;
}

.auth {
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.auth__card {
  width: 100%;
  max-width: 26rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.auth__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 0.5rem;
}
.auth__subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 1.5rem;
}
.auth__footer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.match-detail {
  max-width: 56rem;
  margin-inline: auto;
  padding: 1rem 0.75rem;
}
@media (min-width: 768px) {
  .match-detail {
    padding: 1.5rem 1rem;
  }
}
.match-detail__back {
  margin-bottom: 1rem;
}

.link-orange {
  font-size: 0.875rem;
  color: #e8a030;
  text-decoration: none;
}
.link-orange:hover {
  text-decoration: underline;
  color: #d08a1a;
}

.match-summary {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.match-summary__league {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.75rem;
  color: #6b7280;
}
.match-summary__league > span:nth-child(2) {
  text-align: center;
}
.match-summary__league > span:nth-child(3) {
  text-align: right;
}
.match-summary__date {
  padding: 0.5rem 1rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
}
.match-summary__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
}
@media (min-width: 768px) {
  .match-summary__body {
    gap: 1rem;
    padding: 1.5rem;
  }
}
.match-summary__team {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
@media (min-width: 768px) {
  .match-summary__team {
    gap: 1rem;
  }
}
.match-summary__team--away {
  flex-direction: row-reverse;
  text-align: right;
}
.match-summary__logo {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}
@media (min-width: 768px) {
  .match-summary__logo {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.match-summary__name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .match-summary__name {
    font-size: 1.25rem;
  }
}
.match-summary__role {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.match-summary__vs {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  color: #e5e7eb;
}
@media (min-width: 768px) {
  .match-summary__vs {
    font-size: 1.875rem;
  }
}
.match-summary__score {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}
.match-summary__score code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: none;
}
@media (min-width: 768px) {
  .match-summary__score {
    font-size: 1.875rem;
  }
}
.match-summary__status {
  text-align: right;
}

.accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  list-style: none;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion__header::-webkit-details-marker {
  display: none;
}
.accordion__header:hover {
  background-color: #f9fafb;
}
.accordion__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
.accordion__title h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.accordion__icon {
  font-size: 1.125rem;
  flex-shrink: 0;
  line-height: 1;
}
.accordion__dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: #d1d5db;
}
.accordion__dot--done {
  background-color: #22c55e;
}
.accordion__dot--progress {
  background-color: #f59e0b;
  animation: pipeline-pulse 1.5s ease-in-out infinite;
}
.accordion__dot--waiting {
  background-color: #d1d5db;
}
.accordion__chevron {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #9ca3af;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion[open] .accordion__chevron {
  transform: rotate(180deg);
}
.accordion__body {
  padding: 1rem;
  border-top: 1px solid #f3f4f6;
}
.accordion__hint {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0 0 0.75rem;
}

.empty-state {
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #9ca3af;
}
.empty-state--soft {
  text-align: left;
  padding: 0.75rem;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  color: #374151;
}
.empty-state--soft p {
  margin: 0 0 0.25rem;
}
.empty-state--soft p:last-child {
  margin-bottom: 0;
}
.empty-state--soft .muted {
  color: #6b7280;
  font-size: 0.75rem;
}

.user-edit__breadcrumb {
  margin-bottom: 0.75rem;
}
.user-edit__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #e5e7eb;
}
.user-edit__heading {
  flex: 1;
  min-width: 0;
}
.user-edit__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  word-break: break-word;
}
@media (min-width: 768px) {
  .user-edit__title {
    font-size: 1.5rem;
  }
}
.user-edit__subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.user-edit__header-actions {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}
.user-edit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .user-edit__grid {
    grid-template-columns: 18rem 1fr;
    align-items: start;
  }
}
.user-edit__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .user-edit__sidebar {
    position: sticky;
    top: 5.5rem;
  }
}
.user-edit__main {
  min-width: 0;
}
.user-edit__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.leagues-filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
}
.leagues-filter__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4b5563;
}
.leagues-filter__select {
  flex: 1;
  min-width: 12rem;
  max-width: 22rem;
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: #1a1a1a;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.leagues-filter__select:hover {
  border-color: #9ca3af;
}
.leagues-filter__select:focus, .leagues-filter__select:focus-visible {
  outline: none;
  border-color: #e8a030;
  box-shadow: 0 0 0 3px rgba(232, 160, 48, 0.15);
}
.leagues-filter__tracked {
  margin-left: auto;
}

.chance-leagues {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.chance-leagues__group {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.chance-leagues__group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  background-color: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.chance-leagues__group-header::-webkit-details-marker {
  display: none;
}
.chance-leagues__group-header:hover {
  background-color: #f3f4f6;
}
.chance-leagues__group-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
}
.chance-leagues__group-title::before {
  content: "▸";
  display: inline-block;
  margin-right: 0.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.chance-leagues__group[open] .chance-leagues__group-title::before {
  transform: rotate(90deg);
}
.chance-leagues__body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.chance-leagues__sport {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.chance-leagues__sport-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
.chance-leagues__sport-meta {
  font-size: 0.75rem;
  font-weight: 500;
  color: #9ca3af;
  background-color: #f3f4f6;
  padding: 0 0.5rem;
  border-radius: 9999px;
}

.data-table code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.8125rem;
  color: #d08a1a;
}
.data-table code.muted {
  color: #6b7280;
}

.data-table .muted,
.card .muted {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.scheduler-row--disabled {
  opacity: 0.5;
}

.scheduler-output__toggle {
  cursor: pointer;
  font-size: 0.75rem;
  color: #6b7280;
  list-style: none;
}
.scheduler-output__toggle::-webkit-details-marker {
  display: none;
}
.scheduler-output__toggle:hover {
  color: #e8a030;
}
.scheduler-output__content {
  margin-top: 0.5rem;
  padding: 0.75rem;
  background-color: #1f2937;
  color: #e5e7eb;
  border-radius: 0.5rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.75rem;
  line-height: 1.75;
  overflow-x: auto;
  max-height: 20rem;
  white-space: pre-wrap;
  word-break: break-word;
}

/*# sourceMappingURL=app.output.css.map */
