
/* FILTER ELEMENT */
filter-element {
  display: block;

  .filter-row {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 8px 0;

    .label {
      text-align: right;
      padding: 0 12px;
    }
    .mode {
      width: 6rem;
      padding-right: 8px;
    }
    .input {
      flex-grow: 2;

      max-width: 60%;
      padding-right: 8px;
    }

    button[name=delete] {
      background-color: transparent;
      color: #e53e3e;
      border: 2px solid #e53e3e;
      width: 2rem;
      height: 2rem;
    }
    button[name=delete]:hover {
      background-color: #e53e3e;
      color: white;
    }
  }

  .container {
    display: flex;
    justify-content: right;
    flex-direction: column;
  }
}

selectable-list {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--form-background-color);
  border: 1px solid var(--color-base);
  border-radius: 6px;
  padding: 8px;
  overflow: auto;

  .suggestion {
    padding: 4px 12px;
    border: 1px solid #888;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 8px;
  }
}

/* UTILITIES */
.mini-divider {
  display: block;
  padding: 2rem;
  border-top: 4px solid var(--color-base);
}