ftb-tabs-stories .ftb-tabs {
  display: block;
  margin-bottom: 20px;
  width: fit-content;
  max-width: calc(100% - 20px);
}
ftb-tabs-stories .ftb-tabs__header {
  padding: 0 20px;
}
ftb-tabs-stories .ftb-tabs__header-tab {
  border: 1px solid #999999;
  border-radius: 5px 5px 0 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  padding: 0 30px;
  cursor: pointer;
  background: #dddddd;
  transition: background-color 0.2s ease-in-out;
}
ftb-tabs-stories .ftb-tabs__header-tab.selected {
  border-bottom-color: #f0f0f0;
  background: #f0f0f0;
  z-index: 10;
}
ftb-tabs-stories .ftb-tabs__header-tab:not(.selected):hover {
  background-color: #efefef;
}
ftb-tabs-stories .ftb-tabs__body {
  border: 1px solid #999999;
  background: #f0f0f0;
  border-radius: 5px;
  width: 100%;
  font-size: 12px;
  margin-top: -1px;
  padding: 0 10px;
}
ftb-tabs-stories .ftb-tabs__body-tab {
  padding: 20px 0;
}
ftb-tabs-stories .ftb-tabs__body p {
  margin-bottom: 20px;
}
ftb-tabs-stories .add-tab-button {
  height: 35px;
  width: 75px;
}