.stats small {
  display: block;
  margin-top: 6px;
}

.tip-overview {
  margin-top: 20px;
}

.tip-grid,
.tip-settings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tip-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8faf9;
}

.tip-balls {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}

.number-ball {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 3px solid #c7cac8;
  border-radius: 50%;
  background: #fff;
  font-weight: 800;
}

.euro-ball {
  border-color: #858a87;
}

.tip-setting-row {
  display: grid;
  grid-template-columns: 100px 1fr 150px;
  gap: 10px;
  align-items: end;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}

.tip-setting-row label {
  margin: 0;
}

.cell.free {
  background: #fff3c4;
  color: #7a5900;
  font-weight: 900;
}

.cell .free-month {
  display: grid;
  place-items: center;
  height: 45px;
  font-size: 19px;
}

.legend.free {
  background: #fff3c4;
}

@media (max-width: 850px) {
  .tip-grid,
  .tip-settings {
    grid-template-columns: 1fr;
  }

  .tip-field {
    align-items: flex-start;
    flex-direction: column;
  }

  .tip-setting-row {
    grid-template-columns: 90px 1fr 130px;
  }
}

@media (max-width: 560px) {
  .tip-balls {
    gap: 4px;
  }

  .number-ball {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .tip-setting-row {
    grid-template-columns: 1fr;
  }
}
