body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont;
    letter-spacing: 0.1ex;
}

table {
    width: 50vw;
    min-width: 650px;
    border-collapse: collapse;
    margin: 0 auto;
}

td {
    border-bottom: 1px solid #ccc;
    text-align: left;
    padding: 1em;
}

.center {
    position: fixed;
    inset: 0;
    width: fit-content;
    height: fit-content;
    padding-bottom: 5%;
    margin: auto;
}

input[type="checkbox"] {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 30px;
  display: grid;
  place-content: center;
}

input[type="checkbox"]::before {
  content: "";
  width: 18px;
  height: 18px;
  transform: scale(0);
  border-radius: 30px;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em black;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

button {
    background: none;
    border: none;
    display: block;
    position: fixed;
    bottom: 1em;
    right: 1em;
}

@media (width <= 650px) {
body {
    font-size: 14px;
}
table {
    width: 100vw;
    min-width: auto;
}

td {
    min-width: auto !important;
    
}

td:first-child {
    width: 35%;
    
}


}