$footer-height: 70px;
$create-btn-margin: 16px;
$side-padding: 16px;

:host {
  position: fixed;
  inset: 0;

  display: flex;
  flex-direction: column;
  gap: 8px;

  font-family: var(--default-font-family);
}

.header,
.body {
  padding-right: $side-padding;
  padding-left: $side-padding;
}

.header {
  padding-top: 10px;
}

.body {
  position: relative;
  overflow: auto;
  flex: 1 0;

  .content {
    display: flex;
    flex-flow: column;
    gap: 8px;
    height: 100%;
  }
}

.footer {
  background-color: var(--color-gray-fff);
}

.loader {
  padding: 5px;
}

.create-btn {
  position: absolute;
  right: $create-btn-margin;
  bottom: calc(#{$footer-height} + #{$create-btn-margin});
}

.create-menu {
  position: absolute;
  bottom: 0;
}

.not-implemented {
  display: flex;
  padding: 10px;
  font-size: 16px;
  color: var(--color-gray-444);
}
