/* 右パネルのタブスタイル */

/* タブバー */
.right-panel-tabs {
    display: flex;
    gap: 4px;
    padding: 8px;
    border-bottom: 2px solid rgba(14, 165, 233, 0.3);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
    flex-shrink: 0;
    /* タブバーは縮小しない */
}

.right-panel-tab-btn {
    flex: 1;
    padding: 8px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.right-panel-tab-btn:hover {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.05);
}

.right-panel-tab-btn.active {
    color: #0ea5e9;
    border-bottom-color: #0ea5e9;
}

.right-panel-tab-content {
    display: none;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 0 12px 12px;
    flex: 1;
    /* 残りの高さを埋める */
    overflow: hidden;
    /* 内部スクロールのため */
    flex-direction: column;
}

.right-panel-tab-content.active {
    display: flex;
    /* blockではなくflexにして高さを広げる */
    animation: fadeIn 0.2s ease-out;
}

/* 強制表示/非表示クラス（!important で確実に適用） */
.force-hide {
    display: none !important;
}

.force-show {
    display: flex !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ヘッダー部分 */
.right-panel-tab-content .pie-header,
.right-panel-tab-content .log-header {
    flex-shrink: 0;
    padding: 10px;
}

/* 作業内訳タブのヘッダーはグラフ用として青系の背景色 */
.right-panel-tab-content .pie-header {
    background: linear-gradient(to right, rgba(56, 189, 248, 0.12), rgba(56, 189, 248, 0.03));
    border-bottom: 1px solid rgba(56, 189, 248, 0.25);
}

/* 作業ログタブのヘッダーは一覧用として落ち着いたグレー系 */
.right-panel-tab-content .log-header {
    background: linear-gradient(to right, rgba(148, 163, 184, 0.12), rgba(148, 163, 184, 0.03));
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

/* パイチャートのラッパー調整 */
.right-panel-tab-content .pieWrap {
    flex: 1;
    position: relative;
    min-height: 0;
    /* Flexboxの子要素でスクロールさせるためのハック */
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right-panel-tab-content #pieCanvas {
    max-height: 100%;
    max-width: 100%;
}

/* ログリストの高さ調整 */
.right-panel-tab-content .logBox {
    flex: 1;
    height: auto;
    /* 固定高さを解除 */
    min-height: 0;
    /* Flexboxの子要素でスクロールさせるためのハック */
    display: flex;
    flex-direction: column;
}

.right-panel-tab-content .loglist {
    flex: 1;
    overflow-y: auto;
}

/* カテゴリー/プロジェクト切り替えセグメントボタン */
.breakdown-segment-btn:hover {
    background: rgba(14, 165, 233, 0.1) !important;
}

.breakdown-segment-btn.active {
    background: #0ea5e9 !important;
    color: #fff !important;
}