/* BUSSET Bridge UI - 統合UI用スタイル (Phase 3.9) */

/* ========================================
   基本設定
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #f0f0f0;
    padding: 0;
    margin: 0;
}

/* ========================================
   アプリ全体レイアウト（サイドバー + メインコンテンツ）
======================================== */

.app-wrapper {
    display: flex;
    min-height: 100vh;
}

/* ========================================
   左サイドバー
======================================== */

.sidebar {
    width: 220px;
    background: linear-gradient(180deg, #2d5016 0%, #3d6b1f 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    padding: 20px 15px;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #fff;
}

.sidebar-nav {
    padding: 10px 0;
    flex: 1;
}

.sidebar-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #e8f5e9;
    text-decoration: none;
    transition: background-color 0.2s, padding-left 0.2s;
    cursor: pointer;
    border-left: 4px solid transparent;
}

.sidebar-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 25px;
}

.sidebar-item.active {
    background-color: rgba(255, 255, 255, 0.15);
    border-left-color: #ffeb3b;
    font-weight: bold;
}

.sidebar-icon {
    font-size: 18px;
    margin-right: 12px;
    min-width: 24px;
}

/* ========================================
   サイドバー内 店舗スマホ画面リンク
======================================== */

.sidebar-store-section {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 8px;
    padding-top: 4px;
}

.sidebar-store-label {
    padding: 10px 15px 5px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sidebar-store-nav {
    padding: 0;
}

.sidebar-store-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    border-left: 3px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.sidebar-store-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-left-color: #3498db;
    padding-left: 20px;
}

.store-code-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    min-width: 26px;
    text-align: center;
    flex-shrink: 0;
}

.store-name-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================
   メインコンテンツエリア
======================================== */

.main-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

/* ========================================
   コンテナ
======================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

h1 {
    background: linear-gradient(to right, #0066cc, #0099ff);
    color: white;
    padding: 15px 20px;
    margin: -30px -30px 20px -30px;
    border-radius: 8px 8px 0 0;
    font-size: 20px;
}

/* ========================================
   検索エリア
======================================== */

.search-section {
    background-color: #e8f4f8;
    border: 2px solid #0066cc;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.search-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.search-row label {
    font-weight: bold;
    min-width: 180px;
    color: #0066cc;
}

.search-hint {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.search-hint strong {
    color: #0066cc;
}

/* ========================================
   メッセージエリア
======================================== */

.message-area {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.message-area.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-area.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message-area.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ========================================
   3カラム Grid メインエリア (v1.6)
======================================== */

.main-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    padding: 20px 0;
}

.column {
    min-width: 0;
    background: #fff;
    border: 2px solid #ddd;
    padding: 20px;
    border-radius: 5px;
}

.column-title {
    font-weight: bold;
    font-size: 16px;
    color: #0066cc;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

/* 左カラム: 登録情報（現在値） */
.current-info-column {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

/* 中カラム: 修正・新規入力フォーム */
.edit-form-column {
    background-color: #ffffff;
}

/* 右カラム: POP・タスク連携 */
.pop-task-column {
    background-color: #fff9e6;
    border-color: #ff6600;
}

.pop-task-column .column-title {
    color: #ff6600;
    border-bottom-color: #ff6600;
}

.info-placeholder {
    color: #999;
    text-align: center;
    padding: 40px 20px;
    font-style: italic;
}

.info-item {
    margin-bottom: 15px;
    padding: 10px;
    background-color: #fff;
    border-left: 3px solid #0066cc;
}

.info-item-label {
    font-weight: bold;
    color: #666;
    font-size: 12px;
    margin-bottom: 5px;
}

.info-item-value {
    color: #333;
    font-size: 14px;
}

.info-item-value.empty {
    color: #999;
    font-style: italic;
}

.info-row {
    display: block;
}



/* ========================================
   フォーム要素
======================================== */

.form-group {
    margin-bottom: 20px;
}

.field-label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.field-label.required::after {
    content: " *";
    color: red;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #0066cc;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.25);
}

.textarea-field {
    resize: vertical;
    min-height: 80px;
}

/* 変更検知ハイライト（黄色背景） */
.form-control.is-changed {
    background-color: #fff9c4 !important;
    border-color: #fbc02d !important;
}

/* ========================================
   ヒントテキスト・店舗チェックボックス
======================================== */

.hint-text {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 5px;
    font-style: italic;
}

.store-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    max-height: 300px;
    overflow-y: auto;
}

.store-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-checkbox-item input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.store-checkbox-item label {
    cursor: pointer;
    margin: 0;
    font-weight: normal;
    flex: 1;
}

/* 店舗別売価入力欄 */
.store-price-input {
    width: 80px;
    padding: 2px 6px;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: right;
    color: #c0392b;
    background: #fff8f8;
    flex-shrink: 0;
}
.store-price-input:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 2px rgba(231,76,60,0.15);
}

/* ========================================
   ボタン
======================================== */

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, transform 0.1s ease-in-out;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    color: #fff;
    background-color: #0066cc;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-save {
    color: #fff;
    background-color: #28a745;
}

.btn-save:hover {
    background-color: #218838;
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    font-size: 13px;
    padding: 10px 16px;
}

.btn-info:hover {
    background-color: #138496;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

/* ========================================
   CSV出力エリア (v1.6)
======================================== */

.csv-action-area {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
    border-top: 2px solid #ccc;
    background-color: #f8f9fa;
    border-radius: 5px;
    align-items: flex-start;
}

/* CSV取込エリア（右側） */
.csv-action-area input[type="file"] {
    padding: 8px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}

.csv-action-area input[type="file"]:hover {
    border-color: #0066cc;
}

/* セクション見出しスタイル */
.section-title {
    font-size: 16px;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    font-weight: bold;
}

.section-basic {
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
}

.section-price {
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
}

.section-order {
    color: #0066cc;
    border-bottom: 2px solid #0066cc;
}

/* ========================================
   スマホ用ハンバーガーメニューボタン（PC では非表示）
======================================== */

.sp-menu-toggle {
    display: none;              /* PCでは非表示 */
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 300;
    background: #2d5016;
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* ========================================
   レスポンシブデザイン（768px以下）
======================================== */

@media (max-width: 768px) {
    /* ── レイアウト ── */
    .app-wrapper {
        flex-direction: column;
    }

    /* サイドバーをハンバーガー式に切り替え（デフォルト非表示） */
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        display: none;           /* スマホでは初期非表示 */
        overflow: hidden;
    }
    .sidebar.sp-open {
        display: flex;           /* ハンバーガーボタンで展開 */
    }

    /* ハンバーガーボタン（スマホのみ表示） */
    .sp-menu-toggle {
        display: flex !important;
    }

    .main-content {
        padding: 8px;
    }

    .container {
        padding: 12px;
        border-radius: 6px;
    }

    /* ── ヘッダー：タイトル＋ボタンを縦積み ── */
    .container > div:first-child {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px;
    }
    .container > div:first-child h1 {
        font-size: 15px;
        word-break: break-word;
    }
    .container > div:first-child > div {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .container > div:first-child .btn {
        flex: 1;
        min-width: 120px;
        font-size: 13px;
        white-space: normal;
        text-align: center;
    }

    h1 {
        font-size: 15px;
        padding: 10px 12px;
        margin: -12px -12px 16px -12px;
    }

    /* ── 3カラムGridを1カラムに ── */
    .main-container {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px 0;
    }

    /* ── 検索エリア ── */
    .search-row {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
    .search-row label {
        min-width: auto;
    }

    /* あいまい検索 */
    .fuzzy-search-section {
        padding: 10px;
    }
    .fuzzy-search-hint {
        display: none;           /* ヒントテキストは省スペースのため非表示 */
    }
    .fuzzy-table {
        font-size: 12px;
    }
    .fuzzy-th, .fuzzy-table td {
        padding: 4px 6px;
    }

    /* ── フォーム ── */
    .main-split-container {
        flex-direction: column;
    }
    .column {
        width: 100%;
    }
    .form-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }

    /* ── 店舗チェックボックス ── */
    .store-checkboxes {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    /* ── テーブル全般 ── */
    table {
        font-size: 12px;
    }
    th, td {
        padding: 4px 6px;
        word-break: break-all;
    }

    /* ── 登録情報: 縦スクロール削減のため2列表示 ── */
    .info-row {
        display: flex;
        gap: 8px;
    }
    .info-row .info-item {
        flex: 1 1 0;
        min-width: 0;
    }
}

/* ========================================
   プリント用スタイル
======================================== */

@media print {
    body {
        background-color: #fff;
        padding: 0;
    }

    .container {
        box-shadow: none;
        padding: 0;
    }

    .search-section,
    .form-actions {
        display: none;
    }

    .main-split-container {
        flex-direction: row;
    }

    .column {
        border: 1px solid #000;
    }
}

/* ========================================
   あいまい商品検索
======================================== */

.fuzzy-search-section {
    position: relative;
    background: #f0f7ff;
    border: 1.5px solid #b3d1f5;
    border-radius: 8px;
    padding: 12px 16px 10px;
    margin-bottom: 10px;
}

.fuzzy-search-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
}

.fuzzy-search-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a4f8a;
}

.fuzzy-search-hint {
    font-size: 0.78rem;
    color: #5a7fa8;
}

.fuzzy-search-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fuzzy-search-input {
    flex: 1;
    font-size: 1rem;
    padding: 7px 10px;
}

.fuzzy-clear-btn {
    background: none;
    border: none;
    font-size: 1rem;
    color: #888;
    cursor: pointer;
    padding: 2px 6px;
    line-height: 1;
}
.fuzzy-clear-btn:hover { color: #333; }

.fuzzy-count {
    font-size: 0.8rem;
    color: #5a7fa8;
    white-space: nowrap;
    min-width: 3em;
    text-align: right;
}

/* ドロップダウン */
.fuzzy-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1.5px solid #b3d1f5;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.13);
    max-height: 360px;
    overflow-y: auto;
}

.fuzzy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.fuzzy-th {
    position: sticky;
    top: 0;
    background: #ddeeff;
    color: #1a4f8a;
    font-weight: 700;
    padding: 6px 8px;
    border-bottom: 2px solid #b3d1f5;
    white-space: nowrap;
}

.fuzzy-td {
    padding: 6px 8px;
    border-bottom: 1px solid #e8f0fb;
    vertical-align: middle;
}

.fuzzy-row {
    cursor: pointer;
    transition: background 0.1s;
}
.fuzzy-row:hover,
.fuzzy-row:focus {
    background: #e8f3ff;
    outline: none;
}

.fuzzy-name-col { min-width: 160px; }
.fuzzy-right    { text-align: right; }
.fuzzy-code     { font-family: monospace; color: #444; white-space: nowrap; }
.fuzzy-jan      { font-family: monospace; color: #666; white-space: nowrap; }
.fuzzy-price    { white-space: nowrap; }

.fuzzy-loading,
.fuzzy-empty {
    text-align: center;
    color: #888;
    padding: 16px;
}

/* ===== 統一商品検索パネル (search-unified-section) ===== */

.search-unified-section {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* 行レイアウト共通 */
.su-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}
.su-row:last-child { margin-bottom: 0; }

/* ラベル */
.su-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    min-width: 56px;
}
.su-label-gap { margin-left: 8px; }

/* ラジオボタン（ピル形式） */
.su-radio {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 8px;
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    cursor: pointer;
    font-size: 0.85rem;
    color: #065f46;
    transition: background 0.15s, color 0.15s;
    user-select: none;
}
.su-radio:hover {
    background: #d1fae5;
}
.su-radio input[type="radio"] {
    accent-color: #059669;
    cursor: pointer;
}
.su-radio-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
}

/* セレクトボックス */
.su-select {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 0.85rem;
    color: #334155;
    cursor: pointer;
}
.su-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
    outline: none;
}

/* AND/ORトグル */
.su-logic-toggle {
    display: inline-flex;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.unified-logic-btn {
    background: #f8fafc;
    border: none;
    padding: 5px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.unified-logic-btn + .unified-logic-btn {
    border-left: 1.5px solid #e2e8f0;
}
.unified-logic-btn.active {
    background: #059669;
    color: #ffffff;
}
.unified-logic-btn:hover:not(.active) {
    background: #ecfdf5;
    color: #059669;
}

/* 入力欄 */
.su-input-row {
    gap: 6px;
}
.su-input {
    flex: 1;
    min-width: 200px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.95rem;
    color: #1e293b;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.su-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
    outline: none;
}
.su-input::placeholder { color: #94a3b8; }

/* クリアボタン */
.su-btn-clear {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}
.su-btn-clear:hover {
    background: #e2e8f0;
}

/* 検索ボタン */
.su-btn-search {
    background: #059669;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}
.su-btn-search:hover { background: #047857; }
.su-btn-search:disabled { background: #a7f3d0; cursor: not-allowed; }

/* 検索結果ヘッダー */
.su-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 6px;
    border-top: 1px solid #e2e8f0;
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 8px;
}
.unified-result-count {
    font-size: 0.85rem;
    font-weight: 600;
    color: #059669;
}
.unified-result-count.no-result { color: #94a3b8; }
.su-sort-group {
    display: flex;
    align-items: center;
    gap: 6px;
}
.su-sort-label {
    font-size: 0.82rem;
    color: #64748b;
}
.su-sort-select { font-size: 0.82rem; }

/* 結果テーブル */
.su-table-wrapper {
    overflow-x: auto;
}
.su-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.su-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
    padding: 7px 10px;
    border-bottom: 2px solid #e2e8f0;
    text-align: left;
    white-space: nowrap;
}
.su-th-right { text-align: right; }
.su-th-name { min-width: 160px; }

.unified-result-row {
    cursor: pointer;
    transition: background 0.1s;
}
.unified-result-row:hover { background: #f0fdf4; }
.unified-result-row td {
    padding: 7px 10px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.ur-code { font-family: monospace; white-space: nowrap; }
.ur-jan  { font-family: monospace; white-space: nowrap; font-size: 0.82rem; }
.ur-name { max-width: 240px; }
.ur-kana { color: #94a3b8; font-size: 0.78rem; }
.ur-price { white-space: nowrap; text-align: right; }
.ur-right { text-align: right; }
.ur-dash  { color: #94a3b8; }
.ur-end-date { white-space: nowrap; font-size: 0.82rem; }

/* 発注終了日スタイル */
.order-stopped {
    color: #dc2626;
    font-weight: 600;
    font-size: 0.82rem;
}
.badge-stopped {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 0.76rem;
    font-weight: 700;
}
.order-warning {
    color: #d97706;
    font-size: 0.82rem;
}

/* 「もっと表示」ボタン */
.su-load-more {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 8px;
    background: #f0fdf4;
    border: 1.5px solid #d1fae5;
    border-radius: 8px;
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: center;
    transition: background 0.15s;
}
.su-load-more:hover { background: #dcfce7; }

/* ========================================
   ゴンドラコードパネル
======================================== */
.gondola-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}
.gondola-table thead tr {
    background: #f1f5f9;
}
.gondola-table th {
    padding: 5px 8px;
    text-align: left;
    font-weight: 600;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}
.gondola-table td {
    padding: 5px 8px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.gondola-table tbody tr:hover {
    background: #f8fafc;
}
.gondola-store-name {
    font-weight: 500;
    color: #334155;
}
.gondola-store-code {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-left: 4px;
}
.gondola-display-code {
    font-family: monospace;
    font-weight: 600;
    color: #1e40af;
    letter-spacing: 0.04em;
}
.gondola-tana {
    color: #64748b;
    text-align: center;
}
