:host {
  display: block;
  background: var(--card-background-dark);
  border-radius: var(--card-border-radius);
  box-shadow: var(--card-box-shadow);
  color: white;
  overflow: hidden;
  background-color: var(--card-light-bg-color);
  background-image: var(--card-light-bg-image);
  background-size: cover;
  background-position: 0% top;
}
:host .head {
  display: flex;
  align-items: center;
  padding: 10px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 0 20px 20px rgba(0, 0, 0, 0.1);
}
:host .head div {
  font-size: 12px !important;
  font-weight: 600;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2.5px;
}
:host .body {
  flex-direction: column;
}
:host .body .row {
  display: flex;
  height: 35px;
  padding: 0 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}
:host .body .row:first-of-type {
  padding-top: 2.5px;
}
:host .body .row:last-of-type {
  padding-bottom: 2.5px;
}
:host .body .row:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
:host .body .row:hover {
  background: rgba(0, 0, 0, 0.1);
}
:host .body .row div {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}
:host .body .no-teams {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
}
:host .label {
  max-width: 10px;
  min-width: 10px;
  height: 100%;
}
:host .position {
  max-width: 40px;
  min-width: 40px;
}
:host .points {
  max-width: 45px;
  min-width: 35px;
}
:host .games {
  max-width: 45px;
  min-width: 35px;
}
:host .win-percent {
  max-width: 45px;
  min-width: 35px;
}
:host .name {
  min-width: 65px;
  white-space: nowrap;
  justify-content: flex-start !important;
  text-align: left !important;
  flex: 1;
}
:host .name ftb-team-logo {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  --placeholder-fill: white;
}
:host .wdl,
:host .wl {
  max-width: 55px;
  min-width: 45px;
  font-size: 10px;
}
:host .gd {
  max-width: 85px;
  min-width: 75px;
  font-size: 10px;
}
:host .gd span {
  margin-top: -8px;
  margin-left: 2px;
}
:host .form {
  max-width: 85px;
  min-width: 75px;
}
:host .form i {
  height: 7px;
  width: 7px;
  margin: 2px;
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.5);
  display: inline-block;
}
:host .form i.w {
  background: #0dc190;
}
:host .form i.d {
  background: #e2bf00;
}
:host .form i.l {
  background: #ed4c4c;
}