#root {
  gap: 2em;
}

section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.col-right {
  width: 400px;
  display: block;
  text-align: right;
}

code {
  display: block;
  padding: 1em;
  background-color: #eee;
  margin: 1em 0;
}

.option-color {
  display: flex;
  align-items: center;
}

.option-color .color {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 0;
  margin-right: 10px;
  box-shadow: 0 0 0 1px #ccc;
  border-radius: 4px;
}

/**
 * Input
 */
input {
  border: 1px solid #e0e7ee;
  border-radius: 5px;
  height: 35px;
  width: 150px;
  padding: 5px 15px;
}

/**
 * Events
 */
.events {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  label {
    background-color: #e0e7ee;
    padding: 5px 10px;
    border-radius: 5px;

    &.active {
      background-color: dodgerblue;
      color: #fff;
    }
  }
}