/* ========================================
   回答ステータス管理UI 追加スタイル
   ========================================
   A案のスタイルを継承し、Notionライクなラベル選択UIを追加
======================================== */

/* A案スタイルを継承 */
@import url('../../003/htdocs/proposal-a/styles-proposal-a.css');

/* ========================================
   1. カラー定義
======================================== */

:root {
    --label-red: #EF4444;
    --label-orange: #F97316;
    --label-yellow: #EAB308;
    --label-green: #22C55E;
    --label-blue: #3B82F6;
    --label-purple: #8B5CF6;
    --label-pink: #EC4899;
    --label-gray: #6B7280;
}

/* ========================================
   2. ラベルチップ（色付きバッジ）
======================================== */

.label-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}

.label-chip:hover {
    filter: brightness(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.label-chip--red { background: var(--label-red); }
.label-chip--orange { background: var(--label-orange); }
.label-chip--yellow { background: var(--label-yellow); color: #333; }
.label-chip--green { background: var(--label-green); }
.label-chip--blue { background: var(--label-blue); }
.label-chip--purple { background: var(--label-purple); }
.label-chip--pink { background: var(--label-pink); }
.label-chip--gray { background: var(--label-gray); }

/* 未選択状態（アウトライン） */
.label-chip--outline {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #6b7280;
}

.label-chip--outline:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

/* ========================================
   3. ステータス選択ドロップダウン
======================================== */

.status-select {
    position: relative;
    display: inline-block;
}

.status-select-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    border: 1px solid #d1d5db;
    background: #fff;
    transition: all 0.15s ease;
}

.status-select-trigger:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

.status-select-trigger .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot--green { background: var(--label-green); }
.status-dot--orange { background: var(--label-orange); }
.status-dot--blue { background: var(--label-blue); }
.status-dot--purple { background: var(--label-purple); }
.status-dot--gray {
    background: transparent;
    border: 1.5px solid var(--label-gray);
    position: relative;
}
.status-dot--gray::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 1.5px;
    background: var(--label-gray);
}

.status-select-trigger .material-icons {
    font-size: 18px;
    color: #9ca3af;
    transition: transform 0.2s;
}

.status-select.open .status-select-trigger .material-icons {
    transform: rotate(180deg);
}

/* ドロップダウンメニュー */
.status-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    z-index: 100;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
}

.status-select.open .status-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ドロップダウンアイテム */
.status-select-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.1s;
}

.status-select-item:hover {
    background: #f3f4f6;
}

.status-select-item.selected {
    background: #eff6ff;
}

/* 汎用ラベルドット（丸いバッジ） */
.label-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-select-item .label-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.label-dot--red { background: var(--label-red); }
.label-dot--orange { background: var(--label-orange); }
.label-dot--yellow { background: var(--label-yellow); }
.label-dot--green { background: var(--label-green); }
.label-dot--blue { background: var(--label-blue); }
.label-dot--purple { background: var(--label-purple); }
.label-dot--pink { background: var(--label-pink); }
.label-dot--gray {
    background: transparent;
    border: 1.5px solid var(--label-gray);
    position: relative;
}
.label-dot--gray::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 1.5px;
    background: var(--label-gray);
}

.label-dot--red { background: var(--label-red); }
.label-dot--pink { background: var(--label-pink); }
.label-dot--yellow { background: var(--label-yellow); }

.status-select-item-label {
    font-size: 14px;
    color: #374151;
}

/* カスタムラベルタグ */
.status-select-item-tag {
    font-size: 11px;
    color: #9ca3af;
    margin-left: auto;
}

/* セパレーター */
.status-select-separator {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

/* 新規作成リンク */
.status-select-add {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    cursor: pointer;
    color: var(--blue-600);
    font-size: 14px;
    transition: background 0.1s;
}

.status-select-add:hover {
    background: #eff6ff;
}

.status-select-add .material-icons {
    font-size: 18px;
}

/* ========================================
   4. ラベル作成フォーム
======================================== */

.label-create-form {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.label-create-form-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.label-create-form-title .material-icons {
    font-size: 18px;
    color: var(--blue-500);
}

/* カラーパレット */
.color-palette {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.15s ease;
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-swatch.selected {
    border-color: #1f2937;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1f2937;
}

.color-swatch--red { background: var(--label-red); }
.color-swatch--orange { background: var(--label-orange); }
.color-swatch--yellow { background: var(--label-yellow); }
.color-swatch--green { background: var(--label-green); }
.color-swatch--blue { background: var(--label-blue); }
.color-swatch--purple { background: var(--label-purple); }
.color-swatch--pink { background: var(--label-pink); }
.color-swatch--gray { background: var(--label-gray); }

/* ラベル名入力 */
.label-create-input-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.label-create-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.15s;
}

.label-create-input:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.label-create-input::placeholder {
    color: #9ca3af;
}

.label-create-btn {
    padding: 8px 16px;
    background: var(--blue-600);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

.label-create-btn:hover {
    background: var(--blue-700);
}

/* ========================================
   5. モーダル調整（A案ベースから変更）
======================================== */

.modal-answer-status {
    max-width: 600px;
    width: 90%;
    overflow: visible;
}

.modal-answer-status .modal-body {
    padding: 24px;
    overflow: visible;
}

.modal-answer-status .modal-footer {
    border-radius: 0 0 12px 12px;
}

/* ステータスリスト（テーブル風） */
.status-list {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

/* ステータスリストアイテム */
.status-list-item-answer {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 16px;
    align-items: start;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.status-col-name-answer {
    padding-top: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.status-list-item-answer:first-child {
    border-radius: 8px 8px 0 0;
}

.status-list-item-answer:last-of-type {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.status-list-item-answer:only-child {
    border-radius: 8px;
}

.status-col-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-col-main-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-col-date-answer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

/* ========================================
   6. 履歴ボタン・ツールチップ
======================================== */

.history-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #9ca3af;
    transition: all 0.15s;
}

.history-btn:hover {
    background: #f3f4f6;
    color: #6b7280;
}

.history-btn .material-icons {
    font-size: 18px;
}

/* 履歴ツールチップ */
.history-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    z-index: 200;
    min-width: 220px;
    background: #1f2937;
    color: #fff;
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: all 0.2s ease;
    pointer-events: none;
}

.history-btn:hover .history-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ツールチップの矢印 */
.history-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #1f2937;
    transform: rotate(45deg);
}

.history-tooltip-title {
    font-weight: 600;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #374151;
}

.history-tooltip-item {
    padding: 4px 0;
    display: flex;
    gap: 8px;
}

.history-tooltip-date {
    color: #9ca3af;
    flex-shrink: 0;
}

.history-tooltip-status {
    color: #fff;
}

/* ========================================
   7. メモボタン・展開エリア
======================================== */

.memo-btn-answer {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.15s;
}

.memo-btn-answer:hover {
    background: #e5e7eb;
    color: #374151;
}

.memo-btn-answer.has-memo {
    background: #eff6ff;
    border-color: var(--blue-200);
    color: var(--blue-600);
}

.memo-btn-answer:disabled {
    background: #f3f4f6;
    border-color: #e5e7eb;
    color: #d1d5db;
    cursor: not-allowed;
}

.memo-btn-answer:disabled:hover {
    background: #f3f4f6;
    color: #d1d5db;
}

.memo-btn-answer .material-icons {
    font-size: 16px;
}

/* 旧スタイル（使われなくなった） */
.memo-area-answer {
    margin-top: 12px;
}

/* メモエリア（2段目・横幅いっぱい） */
.memo-area-fullwidth {
    grid-column: 1 / -1;
    padding-top: 12px;
}

.memo-area-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.memo-delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 12px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.15s;
}

.memo-delete-btn:hover {
    background: #fef2f2;
    border-color: #fecaca;
    color: #ef4444;
}

.memo-delete-btn .material-icons {
    font-size: 14px;
}

.memo-textarea-answer {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: none !important;
    transition: border-color 0.15s;
    box-sizing: border-box;
}

.memo-textarea-answer::-webkit-resizer {
    display: none;
}

.memo-textarea-answer:focus {
    outline: none;
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.memo-textarea-answer::placeholder {
    color: #9ca3af;
}

/* ========================================
   8. レスポンシブ
======================================== */

@media (max-width: 600px) {
    .status-list-item-answer {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 12px;
    }

    .status-col-name-answer {
        grid-column: 1;
        grid-row: 1;
    }

    .status-col-main {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .status-col-date-answer {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
    }

    .status-list-item-answer.has-memo-open .status-col-main {
        grid-row: 2;
    }

    .status-list-item-answer.has-memo-open .memo-area-fullwidth {
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .color-palette {
        justify-content: center;
    }
}

/* ========================================
   9. ラベル作成モーダルオーバーレイ
======================================== */

.label-create-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* ========================================
   10. マイリストページ用スタイル
======================================== */

/* ステータスフィルターセクション */
.status-filter-section {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

/* ハイライト版（新機能強調） */
.status-filter-section--highlight {
    background: linear-gradient(135deg, #eff6ff, #dbeafe) !important;
    border: 1px solid #bfdbfe !important;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: stretch;
}

.status-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

/* 右寄せフレックス */
.flex-end {
    display: flex;
    justify-content: flex-end;
}

.status-filter-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.status-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.status-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 13px;
    color: #6b7280;
    background: #fff;
    cursor: pointer;
    transition: all 0.15s ease;
}

.status-filter-chip:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

.status-filter-chip.active {
    border-color: var(--blue-500);
    background: var(--blue-50);
    color: var(--blue-700);
}

.status-filter-chip-count {
    font-size: 11px;
    background: #e5e7eb;
    color: #6b7280;
    padding: 1px 6px;
    border-radius: 10px;
}

.status-filter-chip.active .status-filter-chip-count {
    background: var(--blue-200);
    color: var(--blue-700);
}

.status-filter-settings-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--blue-600);
    text-decoration: none;
    margin-left: auto;
}

.status-filter-settings-link:hover {
    text-decoration: underline;
}

.status-filter-settings-link .material-icons {
    font-size: 16px;
}

/* ステータス統計 + 並び替え 横並び */
.status-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    margin-bottom: 16px;
}

/* ステータス統計サマリー */
.status-stats-summary {
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    flex: 1;
}

.status-stats-total {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.status-stats-total strong {
    font-size: 18px;
    color: #374151;
}

.status-stats-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.status-stats-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.status-stats-item strong {
    color: #374151;
}

/* マイリスト問題リスト */
.mylist-problems-list {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.mylist-problem-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}

.mylist-problem-item:last-child {
    border-bottom: none;
}

.mylist-problem-item:hover {
    background: #f9fafb;
}

.mylist-problem-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #374151;
    min-width: 80px;
    flex-shrink: 0;
}

.mylist-problem-title {
    flex: 1;
    font-size: 14px;
    color: #374151;
}

.mylist-problem-memo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--blue-500);
    background: var(--blue-50);
    padding: 4px 8px;
    border-radius: 4px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mylist-problem-memo .material-icons {
    font-size: 14px;
}

.mylist-problem-arrow {
    color: #9ca3af;
    flex-shrink: 0;
}

.mylist-problem-arrow .material-icons {
    font-size: 20px;
}

/* ========================================
   11. ラベル設定ページ用スタイル
======================================== */

/* パンくず */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 16px;
}

.breadcrumb-link {
    color: var(--blue-600);
    text-decoration: none;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

/* ページ説明 */
.page-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* アクションエリア */
.label-settings-actions {
    margin-bottom: 20px;
}

/* ラベル管理テーブル */
.label-settings-table {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.label-settings-table-header {
    display: grid;
    grid-template-columns: 40px 50px 1fr 100px 60px 80px;
    gap: 8px;
    padding: 12px 16px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

.label-settings-row {
    display: grid;
    grid-template-columns: 40px 50px 1fr 100px 60px 80px;
    gap: 8px;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
    transition: background 0.15s;
}

.label-settings-row:last-child {
    border-bottom: none;
}

.label-settings-row:hover {
    background: #f9fafb;
}

.label-settings-row.dragging {
    opacity: 0.5;
    background: var(--blue-50);
}

.label-settings-col-drag {
    color: #d1d5db;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-settings-col-drag:active {
    cursor: grabbing;
}

.label-settings-col-drag .material-icons {
    font-size: 20px;
}

.label-settings-col-color {
    display: flex;
    align-items: center;
    justify-content: center;
}

.label-settings-col-name {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.label-settings-col-type {
    font-size: 13px;
}

.label-type-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.label-type-badge--default {
    background: #e5e7eb;
    color: #6b7280;
}

.label-type-badge--custom {
    background: var(--blue-100);
    color: var(--blue-700);
}

.label-settings-col-count {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
}

.label-settings-col-actions {
    display: flex;
    gap: 4px;
    justify-content: flex-end;
}

.label-action-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.15s;
}

.label-action-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.label-action-btn .material-icons {
    font-size: 18px;
}

.label-action-btn--delete:hover {
    background: #fef2f2;
    color: #dc2626;
}

.label-action-btn--disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.label-action-btn--disabled:hover {
    background: transparent;
    color: #d1d5db;
}

/* 注意書き */
.label-settings-warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    font-size: 13px;
    color: #92400e;
}

.label-settings-warning .material-icons {
    font-size: 18px;
    color: #f59e0b;
    flex-shrink: 0;
}

/* ========================================
   12. レスポンシブ（マイリスト・ラベル設定）
======================================== */

@media (max-width: 600px) {
    /* ステータスフィルター */
    .status-filter-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .status-filter-chips {
        width: 100%;
    }

    .status-filter-settings-link {
        margin-left: 0;
        margin-top: 8px;
    }

    /* 統計 */
    .status-stats-breakdown {
        flex-direction: column;
        gap: 8px;
    }

    /* 問題リスト */
    .mylist-problem-item {
        flex-wrap: wrap;
    }

    .mylist-problem-status {
        order: 0;
    }

    .mylist-problem-title {
        order: 2;
        width: 100%;
        flex: none;
        margin-top: 4px;
    }

    .tag {
        order: 1;
    }

    .mylist-problem-memo {
        order: 3;
        max-width: 100%;
        margin-top: 8px;
    }

    .mylist-problem-arrow {
        order: 4;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mylist-problem-item {
        position: relative;
        padding-right: 40px;
    }

    /* ラベル設定テーブル */
    .label-settings-table-header {
        display: none;
    }

    .label-settings-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 16px;
    }

    .label-settings-col-drag {
        order: 0;
    }

    .label-settings-col-color {
        order: 1;
    }

    .label-settings-col-name {
        order: 2;
        flex: 1;
    }

    .label-settings-col-type {
        order: 4;
        width: 100%;
        margin-top: 4px;
    }

    .label-settings-col-count {
        order: 5;
        width: auto;
        text-align: left;
    }

    .label-settings-col-count::before {
        content: '使用: ';
        font-size: 12px;
        color: #9ca3af;
    }

    .label-settings-col-actions {
        order: 3;
        margin-left: auto;
    }
}
