@charset "UTF-8";
.card {
  background-color: #151515;
  border-radius: 0.5rem;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding: 1rem;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.card__header {
  align-items: center;
  color: #e5e7eb;
  display: flex;
  padding-bottom: 0.75rem;
  width: 100%;
}
.card__header i {
  color: #818cf8;
  font-size: 2.5rem;
  line-height: 1;
  margin-right: 0.5rem;
}
.card__header-centered {
  justify-content: center;
}
.card__header-centered a {
  margin-right: -35px;
}
.card__header-centered h3 {
  margin: auto;
}
.card__footer {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-top: 0.5rem;
}
.card__unauthorised, .card__not-found, .card__error {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.card__unauthorised h3, .card__not-found h3, .card__error h3 {
  color: #e5e7eb;
}
.card__unauthorised p, .card__not-found p, .card__error p {
  margin-top: 0.25rem;
}

.footer {
  align-items: center;
  border-top: 1px solid #2c2c2c;
  color: #6b7280;
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  margin-top: 2rem;
  padding: 0.75rem;
  text-align: center;
}
.loader {
  animation: rotation 1s linear infinite;
  border: 5px solid #818cf8;
  border-bottom-color: transparent;
  border-radius: 50%;
  box-sizing: border-box;
  display: inline-block;
  height: 48px;
  width: 48px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.navbar-container {
  align-items: center;
  border-bottom: 1px solid #2c2c2c;
  display: flex;
  margin: auto;
  max-width: 1200px;
  position: relative;
}
.navbar-container__brand {
  align-items: center;
  color: #818cf8;
  display: flex;
  font-size: 1.25rem;
  margin-left: 1rem;
  margin-right: 1.5rem;
}
.navbar-container__brand img {
  height: 30px;
  margin-right: 0.5rem;
}
.navbar-container__brand a {
  color: inherit;
  display: flex;
  text-decoration: none;
}

.navbar {
  color: #9ca3af;
  padding: 0.5rem;
  width: 100%;
}
.navbar .ui-menu-list {
  display: flex;
  max-width: 1200px;
  width: 100%;
}
.navbar .ui-menuitem-link {
  padding: 0.5rem 1rem;
}
.navbar .ui-menuitem-text {
  color: #9ca3af;
  font-size: 0.875rem;
}
.navbar .ui-menu-parent .ui-menu-child {
  width: 14em;
}
.navbar .ui-menu-child,
.navbar .ui-menu-child .ui-menuitem {
  background-color: #0c0c0c;
}
.navbar .ui-divider {
  visibility: hidden;
}

/* Desktop - show menubar, hide mobile menu */
.navbar--desktop {
  display: flex !important;
}

.navbar--mobile {
  display: none;
}

.hamburger-btn {
  display: none !important;
  height: 37px;
  width: 37px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .navbar--desktop {
    display: none !important;
  }
  .hamburger-btn {
    border-radius: 50% !important;
    display: inline-flex !important;
    margin: 0.5rem 1rem 0.5rem auto;
  }
  .hamburger-btn .ui-icon {
    margin-top: -9px;
    text-indent: 1px;
  }
  .navbar--mobile.ui-menu {
    min-width: 300px;
  }
  .navbar--mobile {
    background-color: #0c0c0c;
  }
  .navbar--mobile .ui-menuitem-link {
    padding: 0.5rem 1rem;
  }
  .navbar--mobile .ui-widget-header {
    color: #9ca3af;
    padding: 0.5rem 1rem;
  }
  .navbar--mobile .ui-widget-header h3 {
    padding: 0;
  }
  .navbar--mobile .indent {
    margin-left: 1rem;
  }
  .navbar--mobile .ui-menuitem-text {
    color: #e5e7eb;
    font-size: 1rem;
  }
  .navbar--mobile .ui-divider {
    visibility: hidden;
  }
}
/* === Fonts === */
.font-05x {
  font-size: 0.5rem;
}

.font-1x {
  font-size: 1rem;
}

.font-15x {
  font-size: 1.5rem;
}

.font-2x {
  font-size: 2rem;
}

.font-3x {
  font-size: 3rem;
}

.font-4x {
  font-size: 4rem;
}

.font-5x {
  font-size: 5rem;
}

/* === Colours === */
.warning {
  color: #f59e0b;
}

.error {
  color: #dc2626;
}

.success {
  color: #16a34a;
}

/* === Misc === */
.text-center {
  text-align: center !important;
}

.full-width {
  width: 100% !important;
}

.caption {
  color: #9ca3af;
  font-size: 0.875rem;
}

.ui-chkbox .ui-chkbox-box {
  align-items: center;
  background-color: #242424;
  border: 1px solid #242424;
  display: flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.ui-chkbox .ui-chkbox-icon {
  color: white;
  display: block;
  font-family: "Material Design Icons" !important;
  font-size: 24px;
  height: 36px;
  line-height: 28px;
  pointer-events: none;
  text-align: center;
  text-indent: 0;
  visibility: hidden;
  width: 36px;
}

.ui-chkbox .ui-chkbox-icon::before {
  content: "\f012c"; /* mdi-check */
}

.ui-chkbox .ui-state-active .ui-chkbox-icon {
  visibility: visible;
}

.ui-chkbox .ui-chkbox-icon.ui-icon-check {
  background-color: rgba(22, 163, 74, 0.1);
  border: 1px solid #16a34a;
  color: #16a34a;
}

button,
.ui-button,
a.btn {
  align-items: center;
  border-radius: 0.25rem;
  cursor: pointer;
  display: inline-flex;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: background-color 150ms, color 150ms, border-color 150ms;
}
button .ui-button-text,
.ui-button .ui-button-text,
a.btn .ui-button-text {
  padding: 0;
}
button,
.ui-button,
a.btn {
  background-color: #818cf8;
  color: #ffffff;
  border: 1px solid transparent;
}
button:hover:not(:disabled),
.ui-button:hover:not(:disabled),
a.btn:hover:not(:disabled) {
  background-color: rgb(104.8421052632, 117.9511278195, 246.6578947368);
}
button.outlined,
.ui-button.outlined,
a.btn.outlined {
  background-color: rgba(129, 140, 248, 0.1);
  color: #818cf8;
  border: 1px solid #818cf8;
}
button.outlined:hover:not(:disabled),
.ui-button.outlined:hover:not(:disabled),
a.btn.outlined:hover:not(:disabled) {
  background-color: #818cf8;
  color: #ffffff;
}
button.xs,
.ui-button.xs,
a.btn.xs {
  padding: 0.25rem, 0.5rem;
}
button.xs .ui-button-text,
.ui-button.xs .ui-button-text,
a.btn.xs .ui-button-text {
  font-size: 0.75rem;
}
button.error,
.ui-button.error,
a.btn.error {
  background-color: #dc2626;
  color: #ffffff;
  border: 1px solid transparent;
}
button.error:hover:not(:disabled),
.ui-button.error:hover:not(:disabled),
a.btn.error:hover:not(:disabled) {
  background-color: rgb(200.2083333333, 32.2916666667, 32.2916666667);
}
button.error.outlined,
.ui-button.error.outlined,
a.btn.error.outlined {
  background-color: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid #dc2626;
}
button.error.outlined:hover:not(:disabled),
.ui-button.error.outlined:hover:not(:disabled),
a.btn.error.outlined:hover:not(:disabled) {
  background-color: #dc2626;
  color: #ffffff;
}
button.error.xs,
.ui-button.error.xs,
a.btn.error.xs {
  padding: 0.25rem, 0.5rem;
}
button.error.xs .ui-button-text,
.ui-button.error.xs .ui-button-text,
a.btn.error.xs .ui-button-text {
  font-size: 0.75rem;
}
button.warning,
.ui-button.warning,
a.btn.warning {
  background-color: #f59e0b;
  color: #ffffff;
  border: 1px solid transparent;
}
button.warning:hover:not(:disabled),
.ui-button.warning:hover:not(:disabled),
a.btn.warning:hover:not(:disabled) {
  background-color: rgb(221.4251968504, 142.4744094488, 9.0748031496);
}
button.warning.outlined,
.ui-button.warning.outlined,
a.btn.warning.outlined {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border: 1px solid #f59e0b;
}
button.warning.outlined:hover:not(:disabled),
.ui-button.warning.outlined:hover:not(:disabled),
a.btn.warning.outlined:hover:not(:disabled) {
  background-color: #f59e0b;
  color: #ffffff;
}
button.warning.xs,
.ui-button.warning.xs,
a.btn.warning.xs {
  padding: 0.25rem, 0.5rem;
}
button.warning.xs .ui-button-text,
.ui-button.warning.xs .ui-button-text,
a.btn.warning.xs .ui-button-text {
  font-size: 0.75rem;
}
button:disabled,
.ui-button:disabled,
a.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.whatsapp {
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid #25d366;
  color: #25d366;
  margin: 0 auto 1rem auto;
  width: fit-content;
}
.whatsapp .ui-icon {
  font-size: 1.25rem;
  margin-top: -12px;
  text-indent: 0;
}
.whatsapp .ui-button-text {
  margin-left: 20px;
}
.whatsapp:hover:not(:disabled) {
  background-color: #25d366;
  color: #ffffff;
}

.ui-confirm-popup {
  background-color: #242424;
  border-radius: 0.5rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  padding: 1rem;
}
.ui-confirm-popup .ui-confirm-popup-content {
  margin-bottom: 1rem;
}
.ui-confirm-popup .ui-confirm-popup-footer {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.ui-datatable {
  margin: 0.5rem 0;
}

tr.ui-datatable-selectable:hover {
  cursor: pointer;
}

.ui-datatable thead th,
.ui-datatable tfoot td {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
}

.ui-datatable thead th,
.ui-datatable tbody td,
.ui-datatable tfoot td,
.ui-datatable tfoot th {
  border: none;
  padding: 0.5rem 0.75rem;
}

.ui-datatable tbody td {
  color: #e5e7eb;
}

.ui-datatable tbody tr {
  border-top: 1px solid #2c2c2c;
}
.ui-datatable tbody tr.ui-state-hover {
  background-color: rgb(33.75, 33.75, 33.75);
  border-color: #2c2c2c !important;
}

.ui-datepicker {
  background-color: #242424;
  border: 1px solid #151515;
  border-radius: 0.25rem;
  color: #9ca3af;
  padding: 1rem;
}
.ui-datepicker td {
  width: 27px;
}
.ui-datepicker td a {
  color: #9ca3af;
  font-weight: 700;
  padding: 0.3em;
  text-align: center;
}
.ui-datepicker td a.ui-state-highlight {
  border: 1px solid #818cf8;
  border-radius: 50%;
}
.ui-datepicker td a.ui-state-active {
  background-color: #818cf8;
  border-radius: 50%;
  color: #151515;
}

.ui-fileupload {
  background-color: #242424;
  border: 1px solid #242424;
  border-radius: 0.25rem;
  color: #e5e7eb;
  padding: 0.5rem;
}

body .ui-growl {
  bottom: 50px !important;
  font-size: 0.875rem;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  transform: translateX(-50%);
  z-index: 9999;
}

body .ui-growl-item-container {
  background-color: #818cf8 !important;
  border: none !important;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #FFF !important;
  opacity: 0.95;
}
body .ui-growl-item-container .ui-growl-message {
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
}
body .ui-growl-item-container .ui-growl-message .ui-growl-title {
  text-align: center;
}
body .ui-growl-item-container .ui-growl-message p {
  line-height: 1.2;
}

body .ui-growl-item-container.ui-state-highlight,
body .ui-growl-item-container.ui-growl-info {
  background-color: #16a34a !important;
}

body .ui-growl-item-container.ui-growl-warn {
  background-color: #f59e0b !important;
}

body .ui-growl-item-container.ui-growl-error,
body .ui-growl-item-container.ui-growl-fatal {
  background-color: #dc2626 !important;
}

body .ui-growl-item-container .ui-growl-title,
body .ui-growl-item-container .ui-growl-message p,
body .ui-growl-item-container .ui-growl-icon-close {
  color: #e5e7eb !important;
}

body .ui-growl-item-container .ui-growl-image {
  display: none;
}

.ui-growl {
  animation: growl-fade-in 0.5s ease-out;
}

@keyframes growl-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
input,
input.ui-inputfield {
  background-color: #242424;
  border: 1px solid #242424;
  border-radius: 0.25rem;
  color: #e5e7eb;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  width: 100%;
}
input:focus,
input.ui-inputfield:focus {
  border-color: #2c2c2c;
}
input.ui-state-error,
input.ui-inputfield.ui-state-error {
  border-color: #dc2626;
}

.input-with-icon {
  display: inline-block;
  position: relative;
}
.input-with-icon i {
  font-size: 1.5rem;
  left: 10px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.input-with-icon input {
  padding-left: 40px;
}

.ui-messages {
  border-radius: 0.25rem;
}
.ui-messages div {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  display: flex;
  margin: 0.5rem 0 1rem 0;
  padding: 0.5rem 0.75rem;
}
.ui-messages div .ui-messages-error-summary {
  font-weight: 700;
  margin: 0;
}
.ui-messages div .ui-messages-detail {
  font-weight: 400;
}
.ui-messages div .ui-messages-close {
  color: inherit;
  margin-left: auto;
  opacity: 0.7;
}
.ui-messages div .ui-messages-close:hover {
  opacity: 1;
}
.ui-messages div .ui-messages-info-summary,
.ui-messages div .ui-messages-warn-summary,
.ui-messages div .ui-messages-error-summary,
.ui-messages div .ui-messages-fatal-summary {
  font-weight: 700;
  margin: 0;
}
.ui-messages .ui-messages-info {
  background-color: rgba(22, 163, 74, 0.1);
  border-color: #16a34a;
  color: #16a34a;
}
.ui-messages .ui-messages-warn {
  background-color: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  color: #f59e0b;
}
.ui-messages .ui-messages-error {
  background-color: rgba(220, 38, 38, 0.1);
  border-color: #dc2626;
  color: #dc2626;
}
.ui-messages .ui-messages-fatal {
  background-color: rgba(220, 38, 38, 0.2);
  border-color: #dc2626;
  color: #dc2626;
  font-weight: 700;
}

.ui-selectonemenu {
  background-color: #242424;
  border: 1px solid #242424;
  border-radius: 0.25rem;
  color: #e5e7eb;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  width: 100%;
}
.ui-selectonemenu:focus {
  border-color: #2c2c2c;
}
.ui-selectonemenu.ui-state-error {
  border-color: #dc2626;
}
.ui-selectonemenu .ui-inputfield {
  padding: 0;
}

.ui-selectonemenu-panel {
  background-color: #0c0c0c;
  border: 1px solid #2c2c2c;
  border-radius: 0.25rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.ui-selectonemenu-panel .ui-selectonemenu-items-wrapper {
  max-height: 300px !important;
}
.ui-selectonemenu-panel .ui-selectonemenu-item.ui-selectonemenu-list-item {
  cursor: pointer;
  padding: 0.25rem 1rem;
}
.ui-selectonemenu-panel .ui-selectonemenu-item.ui-selectonemenu-list-item.ui-state-highlight {
  color: #818cf8;
}
.ui-selectonemenu-panel .ui-selectonemenu-item.ui-selectonemenu-list-item.ui-state-hover,
.ui-selectonemenu-panel .ui-selectonemenu-item.ui-selectonemenu-list-item.ui-state-highlight:hover {
  background-color: #242424;
  color: #818cf8;
}

.champion-panel {
  align-items: center;
  background-color: rgba(255, 227, 0, 0.05);
  border: 1px solid #ffe300;
  color: #ffe300;
  display: flex;
  margin: 1rem;
  padding: 0.5rem 1rem;
}
.champion-panel i {
  font-size: 1.5rem;
  margin-right: -40px;
  width: 40px;
}
.champion-panel__champion {
  font-weight: 600;
  margin: auto;
}

.missing-players {
  text-align: center;
}
.missing-players h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.missing-players__player {
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.suggested-fixtures {
  text-align: center;
}
.suggested-fixtures h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.suggested-fixtures__fixture-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.suggested-fixtures__fixture {
  margin: auto;
  width: 200px;
}

.fixture-week-date {
  font-size: 0.875rem;
  margin: 5px auto;
}

.fixture-table {
  font-size: 0.875rem;
}
.fixture-table thead {
  display: none;
}
.fixture-table tr {
  height: 50px;
}
.fixture-table td {
  padding: 0.5rem;
}
.fixture-table__home {
  font-weight: 600;
  text-align: right;
}
.fixture-table__away {
  font-weight: 600;
  text-align: left;
}
.fixture-table__result {
  font-weight: 600;
  text-align: center;
  width: 65px;
}
.fixture-table__result-weekno {
  color: #9ca3af;
  display: block;
  font-size: 0.75rem;
}
.fixture-table__result-cell {
  text-align: center;
  width: 50px;
}
.fixture-table__result-badge {
  align-items: center;
  border: 1px solid;
  display: flex;
  font-size: 0.75rem;
  height: 21px;
  justify-content: center;
  width: 21px;
}
.fixture-table__result-badge--W {
  background-color: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border-color: #16a34a;
}
.fixture-table__result-badge--D {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-color: #f59e0b;
}
.fixture-table__result-badge--L {
  background-color: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border-color: #dc2626;
}

@media (max-width: 767px) {
  .fixture-table {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
.head-to-head-table {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.head-to-head-table th .ui-column-title {
  color: #e5e7eb !important;
  display: flex;
  font-weight: 700;
  gap: 0.5rem;
}
.head-to-head-table__identifier {
  border: 1px solid #2c2c2c;
  height: 20px;
  width: 20px;
}
.head-to-head-table__identifier-home {
  background-color: rgba(14, 165, 233, 0.5);
  border-color: #0ea5e9;
}
.head-to-head-table__identifier-away {
  background-color: rgba(245, 158, 11, 0.5);
  border-color: #f59e0b;
}
.head-to-head-table__home .head-to-head-table__identifier {
  background-color: rgba(14, 165, 233, 0.5);
  border-color: #0ea5e9;
}
.head-to-head-table th.head-to-head-table__away, .head-to-head-table__away {
  text-align: right;
}
.head-to-head-table th.head-to-head-table__away .ui-column-title, .head-to-head-table__away .ui-column-title {
  justify-content: flex-end;
}
.head-to-head-table th.head-to-head-table__away .head-to-head-table__identifier, .head-to-head-table__away .head-to-head-table__identifier {
  background-color: rgba(245, 158, 11, 0.5);
  border-color: #f59e0b;
}
.head-to-head-table th.head-to-head-table__away .head-to-head-table__form, .head-to-head-table__away .head-to-head-table__form {
  justify-content: flex-end;
}
.head-to-head-table__label {
  color: #9ca3af !important;
  font-size: 0.75rem;
  text-align: center;
}
.head-to-head-table__label .ui-column-title {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.head-to-head-table__form {
  display: flex;
  gap: 0.5rem;
}
.head-to-head-table__form div {
  height: 13px;
  white-space: nowrap;
  width: 4px;
}
.head-to-head-table__form div.W {
  background-color: #16a34a;
}
.head-to-head-table__form div.D {
  background-color: #f59e0b;
}
.head-to-head-table__form div.L {
  background-color: #dc2626;
}

.image-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.image-cards .image-card {
  aspect-ratio: 1;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin: auto;
  max-width: 280px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}
.image-cards .image-card::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  bottom: 0;
  content: "";
  height: 33%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 1;
}
.image-cards .image-card__image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.image-cards .image-card__title {
  bottom: 0;
  color: #e5e7eb;
  font-size: 2rem;
  left: 0;
  padding: 1rem;
  position: absolute;
  right: 0;
  z-index: 2;
}

.week-selector {
  margin: auto;
}
.week-selector .ui-selectonemenu {
  width: 200px;
}
.week-selector .ui-selectonemenu .ui-selectonemenu-label {
  text-align: center;
}

.result-picker {
  display: flex;
  gap: 1rem;
  margin: auto;
  margin-bottom: 1rem;
}

.defer-fixture-btn,
.clear-fixture-btn {
  margin: auto;
  width: 200px;
}

.league-selector {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.league-selector .field {
  margin-bottom: 0 !important;
}
.league-selector .ui-selectonemenu {
  margin-bottom: 0 !important;
  width: 200px;
}
.league-selector .ui-selectonemenu .ui-selectonemenu-label {
  text-align: center;
}
.league-selector i {
  color: #818cf8;
  font-size: 36px;
  padding: 0 1rem;
}

.league-table {
  font-size: 0.875rem;
}
.league-table tr {
  height: 50px;
}
.league-table th {
  text-align: center !important;
}
.league-table th.league-table__player {
  text-align: left !important;
}
.league-table td {
  padding: 0.5rem !important;
}
.league-table__movement, .league-table__eliminated {
  text-align: center;
  width: 22px;
}
.league-table__position {
  text-align: center;
  white-space: nowrap;
  width: 30px;
}
.league-table__player {
  font-weight: 600;
  text-align: left !important;
  white-space: nowrap;
}
.league-table__points {
  font-weight: 700;
  text-align: center;
  width: 50px;
}
.league-table__played {
  width: 40px;
}
.league-table__played, .league-table__won, .league-table__drawn, .league-table__lost, .league-table__average, .league-table__form {
  color: #9ca3af !important;
  text-align: center;
  white-space: nowrap;
}
.league-table__form div div {
  height: 13px;
  white-space: nowrap;
  width: 4px;
}
.league-table__form div div.W {
  background-color: #16a34a;
}
.league-table__form div div.D {
  background-color: #f59e0b;
}
.league-table__form div div.L {
  background-color: #dc2626;
}
.league-table tr.greyed-out td.league-table__position,
.league-table tr.greyed-out td.league-table__player,
.league-table tr.greyed-out td.league-table__points {
  color: #9ca3af !important;
}

@media (max-width: 767px) {
  .league-table {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .league-table__won, .league-table__drawn, .league-table__lost {
    display: none;
  }
}
.player-panel__position {
  color: #9ca3af;
  text-align: center;
}
.player-panel__form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
}
.player-panel__form div {
  height: 20px;
  white-space: nowrap;
  width: 5px;
}
.player-panel__form div.W {
  background-color: #16a34a;
}
.player-panel__form div.D {
  background-color: #f59e0b;
}
.player-panel__form div.L {
  background-color: #dc2626;
}
.player-panel .fixture-table {
  margin-top: 1.5rem;
}

.prediction-week-date {
  font-size: 0.875rem;
  margin: 5px auto;
}

.prediction-table {
  font-size: 0.875rem;
}
.prediction-table thead {
  display: none;
}
.prediction-table tr {
  height: 50px;
}
.prediction-table td {
  padding: 0.5rem;
}
.prediction-table__player {
  font-weight: 600;
  text-align: left;
}
.prediction-table__team {
  font-weight: 600;
  text-align: left;
}
.prediction-table__badge {
  font-weight: 600;
  text-align: center;
  width: 65px;
}
.prediction-table__result-cell {
  text-align: center;
  width: 50px;
}
.prediction-table__result-badge {
  align-items: center;
  border: 1px solid;
  display: flex;
  font-size: 0.75rem;
  height: 21px;
  justify-content: center;
  width: 21px;
}
.prediction-table__result-badge--unknown {
  background-color: rgba(156, 163, 175, 0.1);
  color: #9ca3af;
  border-color: #9ca3af;
}
.prediction-table__result-badge--correct {
  background-color: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border-color: #16a34a;
}
.prediction-table__result-badge--incorrect {
  background-color: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border-color: #dc2626;
}

tr.greyed-out td.prediction-table__player,
tr.greyed-out td.prediction-table__team {
  color: #9ca3af !important;
}

@media (max-width: 767px) {
  .prediction-table {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat; /* 2 */
  box-sizing: border-box; /* 1 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
  text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}
:where(nav) {
  /**
   * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
   */
}
:where(nav) li::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color in Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: currentColor; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}
:where(dialog):not([open]) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}
:where([aria-hidden=false i][hidden]):not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

.login-container {
  margin: 10px auto 0 auto;
  max-width: 400px;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.login-container__brand {
  margin: 30px 0 20px 0;
  text-align: center;
}
.login-container__title {
  font-size: 2rem;
  text-align: center;
}
.login-container__subtitle {
  font-size: 1.25rem;
  margin-bottom: 20px;
  text-align: center;
}
.login-container__link {
  color: #818cf8;
  font-size: 0.875rem;
  margin: 10px auto 10px auto;
  text-decoration: none;
}
.login-container__login-btn {
  margin: 20px 0 10px 0;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
}
.grid .col {
  flex: 1 0 0;
  padding: 0.5rem;
}
.grid [class^=col-] {
  padding: 0.5rem;
}
.grid .col-1 {
  width: 8.3333%;
}
.grid .col-2 {
  width: 16.6667%;
}
.grid .col-3 {
  width: 25%;
}
.grid .col-4 {
  width: 33.3333%;
}
.grid .col-5 {
  width: 41.6667%;
}
.grid .col-6 {
  width: 50%;
}
.grid .col-7 {
  width: 58.3333%;
}
.grid .col-8 {
  width: 66.6667%;
}
.grid .col-9 {
  width: 75%;
}
.grid .col-10 {
  width: 83.3333%;
}
.grid .col-11 {
  width: 91.6667%;
}
.grid .col-12 {
  width: 100%;
}

.field {
  margin-bottom: 1rem;
}
.field > label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.field > .ui-state-disabled {
  opacity: 0.5;
}

.field-checkbox,
.field-radiobutton {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.formgrid {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5rem;
}
.formgrid > .field,
.formgrid > .field-checkbox,
.formgrid > .field-radiobutton {
  padding: 0.5rem;
}

.flex {
  display: flex;
}

.flex-right {
  margin-left: auto !important;
}

.flex-left {
  margin-right: auto !important;
}

.inline-flex {
  display: inline-flex;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Alignment */
.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.m-auto {
  margin: auto;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.m-l-none {
  margin-left: 0 !important;
}

.m-r-none {
  margin-right: 0 !important;
}

.m-t-none {
  margin-top: 0 !important;
}

.m-b-none {
  margin-bottom: 0 !important;
}

.m-none {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-l-1 {
  margin-left: 0.25rem;
}

.m-r-1 {
  margin-right: 0.25rem;
}

.m-t-1 {
  margin-top: 0.25rem;
}

.m-b-1 {
  margin-bottom: 0.25rem;
}

.m-l-2 {
  margin-left: 0.5rem;
}

.m-r-2 {
  margin-right: 0.5rem;
}

.m-t-2 {
  margin-top: 0.5rem;
}

.m-b-2 {
  margin-bottom: 0.5rem;
}

.m-l-3 {
  margin-left: 0.75rem;
}

.m-r-3 {
  margin-right: 0.75rem;
}

.m-t-3 {
  margin-top: 0.75rem;
}

.m-b-3 {
  margin-bottom: 0.75rem;
}

.m-l-4 {
  margin-left: 1rem;
}

.m-r-4 {
  margin-right: 1rem;
}

.m-t-4 {
  margin-top: 1rem;
}

.m-b-4 {
  margin-bottom: 1rem;
}

/* === Fonts === */
.font-05x {
  font-size: 0.5rem;
}

.font-1x {
  font-size: 1rem;
}

.font-15x {
  font-size: 1.5rem;
}

.font-2x {
  font-size: 2rem;
}

.font-3x {
  font-size: 3rem;
}

.font-4x {
  font-size: 4rem;
}

.font-5x {
  font-size: 5rem;
}

/* === Colours === */
.warning {
  color: #f59e0b;
}

.error {
  color: #dc2626;
}

.success {
  color: #16a34a;
}

/* === Misc === */
.text-center {
  text-align: center !important;
}

.full-width {
  width: 100% !important;
}

.caption {
  color: #9ca3af;
  font-size: 0.875rem;
}

html {
  font-size: 14px;
}

body {
  background-color: #0c0c0c;
  color: #e5e7eb;
  font-family: "Inter", system-ui, sans-serif;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 1rem;
}

@media (max-width: 767px) {
  .container {
    padding: 0.5rem;
  }
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

*:focus {
  outline: none !important;
}

/*# sourceMappingURL=main.css.map */
