.icon {
  fill: currentColor; 
}

.icon-16 {
  width: 16px;
  height: 16px;
}

.icon-32 {
  width: 32px;
  height: 32px;
}

.icon-48 {
  width: 48px;
  height: 48px;
}

.icon-64 {
  width: 64px;
  height: 64px;
}

.icon-128 {
  width: 128px;
  height: 128px;
}

.icon-128-64 {
  width: 128px;
  height: 64px;
}

.icon-32-16 {
  width: 32px;
  height: 16px;
}

.icon-256 {
  width: 256px;
  height: 256px;
}

.link:over {
    color: blue;
}

/* .long-wrap クラスのスタイル */
.long-wrap {
    max-width: 150px;          /* 最大幅を150pxに設定 */
    word-wrap: break-all;     /* 行の幅に合わせて自動的に改行 */
    word-break: break-all;     /* 長い単語がある場合も改行 */
    white-space: normal;       /* テキストの折り返しを有効に */
    overflow-wrap: break-all; /* コンテンツがセル内で折り返す */
}

.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip::after {
    content: attr(data-tooltip);
    visibility: hidden;
    opacity: 0;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Adjust to position above */
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s;
    font-size: 12px;
}

.tooltip:hover::after {
    visibility: visible;
    opacity: 1;
}
