
div[tabulator] {
  height: 1000px;
  background-color: #888;
}

suggestion-box {
  display: block;
  position: absolute;
  min-width: 100%;
  background: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  max-height: 600px;
  overflow: auto;
  z-index: 100;
  right: 0;

  .label {
    padding: 0 16px;
    color: #fff;
    background-color: var(--color-base);
  }

  .clickable {
    cursor: pointer;
  }
  .clickable:hover {
    background-color: #cbdce4;
  }
  .clickable:active {
    background-color: #b5d4e3;
  }
}
suggestion-box.left {
  right: unset;
  left: 0;
}

/* 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);
}

.printable-report {
  .report-table {
    font-size: 11px;
  }
  .report-head {
    color: #fff;
    background-color: var(--color-base);
  }
  .report-row {
    border-bottom: 1px solid var(--color-base);
  }
}