.dialog-search-all-body {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: transparent

.dialog-search-all-keywords-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.dialog-search-all-keywords {
  width: 100%;
  margin-left: 2px;
  margin-right: 2px;
  border: 1px solid #000;
  border-radius: 4px;
}


.tab:hover {
  cursor: pointer;
}

.tab {
  display: inline-block;
  background-color: grey;
  padding: 0.75rem;
  color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.tab.selected {
  background-color: black;
}

.tab-header {
  width: 100%;
}

.tab-body {
  width: 100%;
  flex: 1;
  display: flex;
  flex-flow: column;
  min-height: 0;
  overflow: hidden;
}

.tab-panel {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-flow: column;
  border-top: 2px solid black;
  width: 100%;
  height: 100%;
}

.tab-panel.hidden {
  display:none;
}
