.legend {
  display: grid;
  grid-template-columns: 50px 1fr 50px 1fr;
  gap: 15px;
  justify-content: end;
}

@media (min-width: 850px) {
  .legend {
    grid-template-columns: 50px 1fr 50px 1fr 50px 1fr;
  }
}

@media (min-width: 1200px) {
  .legend {
    display: flex;
    align-items: stretch;
    gap: 10px;
    /* padding-bottom: 10px; */
    justify-content: flex-end;
  }
}

.legend__color {
  width: 25px;
}
.legend__name {
  font-size: 1.2rem;
}

.grey {
  background-color: rgb(116, 116, 119);
}

.green {
  background-color: rgb(30, 255, 0);
}

.planning__period_selection {
  width: 300px;
  margin-left: auto;
  margin-right: 20px;
  margin-bottom: 30px;
}

table.planning {
  width: 100%;
}

table.planning td {
  padding: 10px;
}

table.planning td.clickable {
  width: 16%;
  display: table-cell;
  position: relative;
}
table.planning label {
  display: inline-block;
  position: absolute;
  cursor: crosshair;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(116, 116, 119);
}
table.planning input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

table.planning input[type="checkbox"]:checked + label {
  background-color: rgb(30, 255, 0);
}

.planningArea {
  padding: 30px;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
}
