:root {
  font-family: system-ui, sans-serif;
  color: #17221b;
  background: #eef2ee;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  overflow-wrap: anywhere;
}
#app {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
}
.ef-world-home {
  width: 100%;
  max-width: 680px;
  margin: auto;
  padding: 20px;
}
.player-context {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 20px 20px 0;
}
.player-context p {
  margin: 0;
}
.player-context p:first-child {
  font-size: 1.1rem;
  font-weight: 750;
}
.player-context p + p {
  color: #607066;
  font-size: 0.9rem;
}
.ef-world-home > header,
.ef-world-home > section,
.ef-world-home > .player-form {
  margin-bottom: 16px;
  padding: 20px;
  border: 1px solid #dce5dd;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgb(23 34 27 / 6%);
}
.ef-world-home > header p,
.ef-world-home > header h1,
.ef-world-home h2,
.ef-world-home h3 {
  margin-top: 0;
}
.matchday-card {
  padding: 16px;
  border-radius: 14px;
  background: #f4f7f4;
}
.matchday-card dl > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.7fr) 1.3fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #dce5dd;
}
.matchday-card dt {
  color: #607066;
}
.matchday-card dd {
  margin: 0;
  font-weight: 650;
}
fieldset {
  margin: 16px 0 0;
  padding: 0;
  border: 0;
}
fieldset button {
  display: inline-block;
  margin-right: 8px;
}
button[aria-pressed='true'] {
  border-color: #288744;
  background: #e4f4e8;
}
input {
  width: 100%;
  min-height: 46px;
  margin: 6px 0 12px;
  padding: 10px 12px;
  border: 1px solid #b8c4ba;
  border-radius: 10px;
  font: inherit;
}
.player-career__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.player-career__heading button {
  margin: 0;
}
.player-career__results,
.player-career__summary-games {
  padding-left: 20px;
}
.player-career__result {
  margin-bottom: 10px;
}
.player-career__result span {
  display: block;
  color: #607066;
}
h1 {
  letter-spacing: -0.04em;
}
p {
  line-height: 1.6;
}
button {
  display: block;
  min-height: 48px;
  max-width: 100%;
  padding: 12px 20px;
  margin: 12px 0;
  border: 1px solid #ccd4cd;
  border-radius: 10px;
  background: white;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
button:focus-visible {
  outline: 3px solid #288744;
  outline-offset: 3px;
}
button:disabled {
  cursor: wait;
  opacity: 0.58;
}
@media (max-width: 440px) {
  .ef-world-home,
  .player-context {
    padding-right: 12px;
    padding-left: 12px;
  }
  .ef-world-home > header,
  .ef-world-home > section,
  .ef-world-home > .player-form {
    padding: 16px;
  }
}
