:root {
  --padding-horizontal: 12px;
}
html {
  --togostanza-theme-series_0_color: #6590e6;
  --togostanza-theme-series_1_color: #3ac9b6;
  --togostanza-theme-series_2_color: #9ede2f;
  --togostanza-theme-series_3_color: #f5da64;
  --togostanza-theme-series_4_color: #f57f5b;
  --togostanza-theme-series_5_color: #f75976;
  --togostanza-theme-background_color: #ecefef;
  --togostanza-theme-text_color: #000000;
  --togostanza-theme-border_color: #000000;
}

body {
  font-family: Arial, sans-serif;
  margin: 10px;
  padding: 0;
  font-size: 10px;
  background-color: #afb7b7;
  color: var(--togostanza-theme-text_color);
}

.panel {
  background-color: var(--togostanza-theme-background_color);
  margin: 4px;
  padding: 4px;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

/* タブ用スタイル */
.tab-container {

  .tabs {
    display: flex;
    padding: 0 4px;
    /* border-bottom: 1px solid #ccc; */
    .tab {
      background: none;
      border: none;
      padding: 8px 0 2px;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      opacity: .3;
      color: var(--togostanza-theme-text_color);
      + .tab {
        margin-left: 8px;
      }
      &.-active {
        /* background-color: #ecefef; */
        border-bottom: 2px solid #000;
        opacity: 1;
      }
    }
  }
  .tab-content {
    display: none;
    margin-top: 8px;
    overflow-x: auto;
    &.-active {
      display: block;
    }
    textarea {
      width: 100%;
      height: 200px;
      font-family: monospace;
    }
  }
}
#DataEditorTab textarea {
  height: 200px;
}
#ColorSchemeEditorTab textarea {
  height: 160px;
}

/* カラースキーマボタン全体 */
#color-schemes {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
  padding: 0px 2px;
  > button {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    color: var(--togostanza-theme-text_color);
    background-color: transparent;
    &.-active {
      outline: 1px solid var(--togostanza-theme-border_color);
    }
    > span {
      font-size: 10px;
    }
  }
}

/* カラーサンプル用コンテナ */
.color-scheme-sample {
  display: flex;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 4px;
}

/* 各シリーズのカラーボックス */
.color-scheme-box {
  width: 10px;
  height: 10px;
  margin-right: 4px;
  &:last-child {
    margin-right: 0;
  }
}


h2 {
  font-size: 1.2em;
  margin: 0.5em 0 0.2em calc(var(--padding-horizontal) * 0.2);
}

#stanzas {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow-x: auto;
  > * {
    width: fit-content;
  }
}

togostanza-pagination-table {
  padding: 10px var(--padding-horizontal);
  --togostanza-table-border: 1px solid #000;
  --togostanza-table-shadow: ;
  --togostanza-thead-border-bottom: 1px solid #000;
  --togostanza-thead-font-size: 10px;
  --togostanza-tbody-border-bottom: 1px solid #0002;
}