:host {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 48px);
}

.dialog-header {
  position: relative;

  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;

  margin: 24px 24px 0;
}

.tabs {
  flex: 1 1 auto;
  min-width: 0;
}

.dialog-actions {
  position: absolute;
  right: 0;

  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.dialog-action {
  cursor: pointer;
  transform: translateY(-0.5px);
  color: var(--color-gray-222);
}

.wrapper {
  overflow: hidden;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;

  width: 700px;
  min-height: 300px;
  padding: 24px;
}
