/* ========================================
   回答ステータス V2（シンプル版）スタイル
   ========================================
   絵文字トグルボタンによるワンクリック操作UI
======================================== */

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

/* ========================================
   1. カラー定義（V1と共通）
======================================== */

: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. ステータストグルグループ（連結ボタングループ）
======================================== */

.status-toggle-group {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
}

.status-toggle-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 36px;
    border: none;
    border-right: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.12s ease;
    user-select: none;
    padding: 0;
    line-height: 1;
    border-radius: 0;
}

.status-toggle-btn:first-child {
    border-radius: 7px 0 0 7px;
}

.status-toggle-btn:last-child {
    border-right: none;
    border-radius: 0 7px 7px 0;
}

.status-toggle-btn:hover {
    background: #f3f4f6;
    z-index: 1;
}

/* 選択中の状態 */
.status-toggle-btn.active {
    z-index: 2;
    box-shadow: inset 0 0 0 1.5px currentColor;
}

.status-toggle-btn.active:hover {
    filter: brightness(0.95);
}

/* 各フラグのアクティブカラー */
.status-toggle-btn.active[data-status="unanswered"] {
    background: #f3f4f6;
    color: var(--label-gray);
}

.status-toggle-btn.active[data-status="done"] {
    background: #dcfce7;
    color: var(--label-green);
}

.status-toggle-btn.active[data-status="redo"] {
    background: #fff7ed;
    color: var(--label-orange);
}

.status-toggle-btn.active[data-status="skip"] {
    background: #fee2e2;
    color: var(--label-red);
}

.status-toggle-btn.active[data-status="custom"] {
    background: #f3e8ff;
    color: var(--label-purple);
}

.status-toggle-btn.active[data-status="custom2"] {
    background: #fef3c7;
    color: var(--label-yellow);
}

/* ========================================
   3. ツールチップ
======================================== */

.status-toggle-btn .status-toggle-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    background: #1f2937;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease;
    pointer-events: none;
}

.status-toggle-btn .status-toggle-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

.status-toggle-btn:hover .status-toggle-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}

/* ========================================
   4. モーダル調整
======================================== */

.modal-answer-status-v2 {
    max-width: 640px;
    width: 90%;
    overflow: visible;
    max-height: none;
}

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

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

/* ========================================
   5. ステータスリスト（V2版）
======================================== */

.status-list-v2 {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.status-list-item-v2 {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 16px;
    align-items: start;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

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

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

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

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

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

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

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

/* メモエリア（2段目・横幅いっぱい） */
.status-list-item-v2.has-memo-open .memo-area-fullwidth-v2 {
    display: block;
}

.memo-area-fullwidth-v2 {
    grid-column: 1 / -1;
    padding-top: 12px;
    display: none;
}

.status-list-item-v2.has-memo-open .memo-area-fullwidth-v2 {
    display: block;
}

/* ========================================
   6. メモボタン・展開エリア（V1から継承）
======================================== */

.memo-btn-v2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.15s;
}

.memo-btn-v2:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #d1d5db;
}

.memo-btn-v2.has-memo {
    background: #eff6ff;
    border-color: var(--blue-200, #bfdbfe);
    color: var(--blue-600, #2563eb);
}

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

.memo-btn-v2:disabled:hover {
    background: transparent;
    color: #d1d5db;
}

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

/* メモボタン ツールチップ（追加・削除共通） */
.memo-btn-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    background: #1f2937;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease;
    pointer-events: none;
}

.memo-btn-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px;
    border-style: solid;
    border-color: #1f2937 transparent transparent transparent;
}

.memo-btn-v2:hover .memo-btn-tooltip,
.memo-delete-btn-v2:hover .memo-btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}

.memo-textarea-v2 {
    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-v2::-webkit-resizer {
    display: none;
}

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

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

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

.memo-delete-btn-v2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.15s;
}

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

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

/* ========================================
   7. 履歴ボタン・ツールチップ（V1から継承）
======================================== */

.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;
}

/* ========================================
   8. カスタマイズリンク
======================================== */

.customize-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--blue-600, #2563eb);
    text-decoration: none;
    margin-top: 12px;
}

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

.customize-link .material-icons {
    font-size: 16px;
}

/* ========================================
   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. ラベル設定ページ（V2版）
======================================== */

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

.breadcrumb-link {
    color: var(--blue-600, #2563eb);
    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;
}

/* ラベル管理テーブル（V2版 - 絵文字+表示/非表示カラム追加） */
.label-settings-table-v2 {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.label-settings-table-header-v2 {
    display: grid;
    grid-template-columns: 40px 56px 1fr 80px 80px 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-v2 {
    display: grid;
    grid-template-columns: 40px 56px 1fr 80px 80px 60px 80px;
    gap: 8px;
    padding: 14px 16px;
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    align-items: center;
    transition: background 0.15s;
}

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

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

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

.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-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.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, #dbeafe);
    color: var(--blue-700, #1d4ed8);
}

/* 表示/非表示トグルスイッチ */
.label-settings-col-visibility {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 22px;
    background: #d1d5db;
    border-radius: 11px;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.2s;
}

.toggle-switch.active {
    background: var(--label-green);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active::after {
    transform: translateX(18px);
}

.toggle-switch:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.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;
}

/* カラーパレット */
.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 {
    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, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

/* 絵文字パレット */
.emoji-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.emoji-option {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.emoji-option:hover {
    border-color: #9ca3af;
    background: #f3f4f6;
    transform: scale(1.1);
}

.emoji-option.selected {
    border-color: var(--label-purple);
    background: #f3e8ff;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--label-purple);
}

/* ========================================
   11. マイリストページ用スタイル（V2版）
======================================== */

/* ステータスフィルターセクション */
.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;
}

.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, #3b82f6);
    background: var(--blue-50, #eff6ff);
    color: var(--blue-700, #1d4ed8);
}

.status-filter-chip-emoji {
    font-size: 16px;
    line-height: 1;
}

.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, #bfdbfe);
    color: var(--blue-700, #1d4ed8);
}

.status-filter-settings-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--blue-600, #2563eb);
    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-status-emoji {
    font-size: 18px;
    line-height: 1;
}

.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, #3b82f6);
    background: var(--blue-50, #eff6ff);
    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;
}

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

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

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

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

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

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

    .status-toggle-btn {
        width: 34px;
        height: 32px;
        font-size: 15px;
    }

    /* ステータスフィルター */
    .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;
        position: relative;
        padding-right: 40px;
    }

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

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

    .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%);
    }

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

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

    .label-settings-col-drag { order: 0; }
    .label-settings-col-emoji { order: 1; }
    .label-settings-col-name { order: 2; flex: 1; }
    .label-settings-col-actions { order: 3; margin-left: auto; }
    .label-settings-col-type { order: 4; width: 100%; margin-top: 4px; }
    .label-settings-col-visibility { order: 5; }
    .label-settings-col-count { order: 6; width: auto; text-align: left; }

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