/* HERE IS THE IMPORTANT STUFF RELATED TO THE TOGGLE ITSELF */
.toggle {
    background-color: grey;
    width: 60px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
  }

  .toggle-active {
    background-color: blue;
    width: 60px;
    height: 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  input {
    display: none;
  }

  .slider {
    height: 24px;
    width: 24px;
    background-color: white;
    border-radius: 12px;
    margin: 4px;
  }

  input:checked + .toggle {
     background-color: green;
  }

  input:checked + .toggle > .slider {
    align-self: flex-end;
  }

  /* END OF IMPORTANT STUFF, START OF COSMETIC STUFF */

  body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .container {
    background-color: lightgrey;
    height: 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    padding: 30px;
  }

  .list-item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
