main {
  display: block;
  margin: 0 auto;
  padding: 20px;
  max-width: 1000px;
  width: 100%;

  h1 {
    display: block;
    font: bold 2em "Montserrat";
  }

  table {
    border: 1px solid #cfcfcf;
    border-collapse: collapse;
    font-family: "Quicksand";
    width: 100%;

    tr {
      border-bottom: 1px solid #cfcfcf;

      &:first-child {
        height: 50px;
        text-align: center;

        th {
          font-size: 0.9em;
        }
      }
    }

    td {
      text-align: center;

      img {
        aspect-ratio: 1/1;
        display: block;
        object-fit: cover;
        margin: auto;
        padding: 5px;
        height: 100px;
        width: 100px;
      }

      input[type="number"] {
        background-color: rgb(239, 239, 239);
        border-radius: 5px;
        border: none;
        display: block;
        text-align: center;
        margin: 0 auto;
        padding: 10px 15px;
        width: 70px;
        outline: none;
      }
    }
  }

  .actions {
    align-items: center;
    border: 1px solid #cfcfcf;
    border-top: none;
    display: flex;
    justify-content: space-between;
    padding: 15px;

    input[type="text"] {
      border: 1px dashed gray;
      display: block;
      font: normal 1em "Quicksand";
      text-align: center;
      outline: none;
    }

    button {
      border: none;
      cursor: pointer;
      color: white;
      display: block;
      font: bold 1em "Montserrat";
      margin: 0 10px;
      padding: 10px 20px;
      outline: none;

      &[disabled] {
        opacity: 0.6;
      }
    }
  }
}
