/* ── Design tokens ───────────────────────────────── */ :root { /* Surfaces */ --body-bg: #f9fafb; --card-bg: #ffffff; --card-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); --card-radius: 0.5rem; /* Semantic colors */ --blue-600: #2563eb; --blue-700: #1d4ed8; --green-100: #dcfce7; --green-800: #166534; --yellow-100: #fef9c3; --yellow-800: #854d0e; --red-100: #fee2e2; --red-800: #991b1b; --blue-100: #dbeafe; --blue-800: #1e40af; /* Text */ --text-primary: #111827; --text-secondary: #4b5563; --text-muted: #6b7280; --border-color: #e5e7eb; /* Dots */ --dot-green: #22c55e; --dot-yellow: #eab308; --dot-red: #ef4444; } /* ── Base ────────────────────────────────────────── */ body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 1rem; background-color: var(--body-bg); margin: 0; padding: 0; } /* ── Top Navbar ──────────────────────────────────── */ .top-navbar { position: fixed; top: 0; left: 0; right: 0; height: 48px; background: #fff; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; padding: 0 1.5rem; gap: 1.5rem; z-index: 1000; box-shadow: 0 1px 3px rgba(0,0,0,0.06); } .navbar-brand { font-weight: 700; font-size: 1rem; color: #111827; white-space: nowrap; } .navbar-links { display: flex; align-items: stretch; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; } .navbar-links::-webkit-scrollbar { display: none; } .nav-tab { display: flex; align-items: center; padding: 0 1rem; height: 48px; color: #64748b; text-decoration: none; font-size: 0.9375rem; font-weight: 500; border-bottom: 2px solid transparent; white-space: nowrap; flex-shrink: 0; transition: color 0.15s, border-color 0.15s; } .nav-tab:hover { color: #111827; background: #f9fafb; text-decoration: none; } .nav-tab.active { color: var(--blue-600); border-bottom-color: var(--blue-600); } /* ── Main content ────────────────────────────────── */ .main-content { padding-top: 64px; padding-left: 1.5rem; padding-right: 1.5rem; padding-bottom: 1.5rem; min-height: 100vh; max-width: 1280px; margin-left: auto; margin-right: auto; } /* ── Cards ───────────────────────────────────────── */ .card { border: none; box-shadow: var(--card-shadow); border-radius: var(--card-radius); background: var(--card-bg); } .card-header { background: var(--card-bg); border-bottom: 1px solid var(--border-color); font-weight: 600; font-size: 0.9375rem; padding: 0.75rem 1rem; } /* ── Tables ──────────────────────────────────────── */ .table { font-size: 1rem; } .table th { font-size: 0.8125rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); background: #f9fafb; padding: 0.75rem 1rem; border-top: none; } .table td { padding: 0.625rem 1rem; color: var(--text-secondary); font-size: 1rem; } /* Zebra striping */ .table tbody tr:nth-child(even) td { background-color: #f7f8fa; } .table-hover tbody tr:hover td { background-color: #eef2ff !important; } /* ── Badges — soft pill style ────────────────────── */ .badge { font-size: 0.8125rem; font-weight: 500; padding: 0.125rem 0.5rem; border-radius: 9999px; } .badge.bg-success { background: var(--green-100) !important; color: var(--green-800) !important; } .badge.bg-info { background: var(--blue-100) !important; color: var(--blue-800) !important; } .badge.bg-warning { background: var(--yellow-100) !important; color: var(--yellow-800) !important; } .badge.bg-danger { background: var(--red-100) !important; color: var(--red-800) !important; } /* Legacy badge classes */ .badge-imported { background: var(--green-100); color: var(--green-800); } .badge-skipped { background: var(--yellow-100); color: var(--yellow-800); } .badge-error { background: var(--red-100); color: var(--red-800); } .badge-pending { background: #f3f4f6; color: #374151; } .badge-ready { background: var(--blue-100); color: var(--blue-800); } /* ── Buttons ─────────────────────────────────────── */ .btn { font-size: 0.9375rem; border-radius: 0.375rem; } .btn-sm { font-size: 0.875rem; padding: 0.375rem 0.75rem; } .btn-primary { background: var(--blue-600); border-color: var(--blue-600); } .btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); } /* ── Forms ───────────────────────────────────────── */ .form-control, .form-select { font-size: 0.9375rem; padding: 0.5rem 0.75rem; border-radius: 0.375rem; border-color: #d1d5db; } .form-control:focus, .form-select:focus { border-color: var(--blue-600); box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2); } /* ── Unified Pagination Bar ──────────────────────── */ .pagination-bar { display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; } .page-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 2rem; height: 2rem; padding: 0 0.5rem; font-size: 0.8125rem; border: 1px solid #d1d5db; border-radius: 0.375rem; background: #fff; color: var(--text-secondary); cursor: pointer; transition: background 0.12s, border-color 0.12s; text-decoration: none; user-select: none; } .page-btn:hover:not(:disabled):not(.active) { background: #f3f4f6; border-color: #9ca3af; color: var(--text-primary); text-decoration: none; } .page-btn.active { background: var(--blue-600); border-color: var(--blue-600); color: #fff; font-weight: 600; } .page-btn:disabled, .page-btn.disabled { opacity: 0.4; cursor: default; pointer-events: none; } /* Loading spinner ────────────────────────────────── */ .spinner-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.7); z-index: 9999; display: flex; align-items: center; justify-content: center; } /* ── Colored dots ────────────────────────────────── */ .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; } .dot-green { background: var(--dot-green); } .dot-yellow { background: var(--dot-yellow); } .dot-red { background: var(--dot-red); } .dot-gray { background: #9ca3af; } .dot-blue { background: #3b82f6; } /* ── Flat row (mobile + desktop) ────────────────── */ .flat-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; border-bottom: 1px solid #f3f4f6; font-size: 1rem; } .flat-row:last-child { border-bottom: none; } .flat-row:hover { background: #f9fafb; cursor: pointer; } .grow { flex: 1; min-width: 0; } .truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } /* ── Colored filter count - text color only ─────── */ .fc-green { color: #16a34a; } .fc-yellow { color: #ca8a04; } .fc-red { color: #dc2626; } .fc-neutral { color: #6b7280; } .fc-blue { color: #2563eb; } .fc-dark { color: #374151; } /* ── Log viewer (dark theme — keep as-is) ────────── */ .log-viewer { font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace; font-size: 0.8125rem; line-height: 1.5; max-height: 600px; overflow-y: auto; padding: 1rem; margin: 0; background-color: #1e293b; color: #e2e8f0; white-space: pre-wrap; word-wrap: break-word; border-radius: 0 0 0.5rem 0.5rem; } /* ── Clickable table rows ────────────────────────── */ .table-hover tbody tr[data-href] { cursor: pointer; } .table-hover tbody tr[data-href]:hover { background-color: #f9fafb; } /* ── Sortable table headers ──────────────────────── */ .sortable { cursor: pointer; user-select: none; } .sortable:hover { background-color: #f3f4f6; } .sort-icon { font-size: 0.75rem; margin-left: 0.25rem; color: var(--blue-600); } /* ── SKU group visual grouping ───────────────────── */ .sku-group-odd { background-color: #f8fafc; } /* ── Editable cells ──────────────────────────────── */ .editable { cursor: pointer; } .editable:hover { background-color: #f3f4f6; } /* ── Order detail modal ──────────────────────────── */ .modal-lg .table-sm td, .modal-lg .table-sm th { font-size: 0.875rem; padding: 0.35rem 0.5rem; } /* ── Modal stacking (quickMap over orderDetail) ───── */ #quickMapModal { z-index: 1060; } #quickMapModal + .modal-backdrop, .modal-backdrop ~ .modal-backdrop { z-index: 1055; } /* ── Quick Map compact lines ─────────────────────── */ .qm-line { border-bottom: 1px solid #e5e7eb; padding: 6px 0; } .qm-line:last-child { border-bottom: none; } .qm-row { display: flex; gap: 6px; align-items: center; } .qm-codmat-wrap { flex: 1; min-width: 0; } .qm-rm-btn { padding: 2px 6px; line-height: 1; } #qmCodmatLines .qm-selected:empty { display: none; } #quickMapModal .modal-body { padding-top: 12px; padding-bottom: 8px; } #quickMapModal .modal-header { padding: 10px 16px; } #quickMapModal .modal-header h5 { font-size: 0.95rem; margin: 0; } #quickMapModal .modal-footer { padding: 8px 16px; } /* ── Deleted mapping rows ────────────────────────── */ tr.mapping-deleted td { text-decoration: line-through; opacity: 0.5; } /* ── Map icon button ─────────────────────────────── */ .btn-map-icon { color: var(--blue-600); padding: 0.1rem 0.25rem; cursor: pointer; font-size: 1rem; text-decoration: none; } .btn-map-icon:hover { color: var(--blue-700); } /* ── Last sync summary card columns ─────────────── */ .last-sync-col { border-right: 1px solid var(--border-color); } /* ── Cursor pointer utility ──────────────────────── */ .cursor-pointer { cursor: pointer; } /* ── Filter bar ──────────────────────────────────── */ .filter-bar { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; padding: 0.625rem 0; } .filter-pill { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.375rem 0.75rem; border: 1px solid #d1d5db; border-radius: 0.375rem; background: #fff; font-size: 0.9375rem; cursor: pointer; transition: background 0.15s, border-color 0.15s; white-space: nowrap; } .filter-pill:hover { background: #f3f4f6; } .filter-pill.active { background: var(--blue-700); border-color: var(--blue-700); color: #fff; } .filter-pill.active .filter-count { color: rgba(255,255,255,0.9); } .filter-count { font-size: 0.8125rem; font-weight: 600; } /* ── Search input ────────────────────────────────── */ .search-input { padding: 0.375rem 0.75rem; border: 1px solid #d1d5db; border-radius: 0.375rem; font-size: 0.9375rem; outline: none; min-width: 180px; } .search-input:focus { border-color: var(--blue-600); } /* ── Autocomplete dropdown (keep as-is) ──────────── */ .autocomplete-dropdown { position: absolute; z-index: 1050; background: #fff; border: 1px solid #dee2e6; border-radius: 0.375rem; box-shadow: 0 4px 12px rgba(0,0,0,0.15); max-height: 300px; overflow-y: auto; width: 100%; } .autocomplete-item { padding: 0.5rem 0.75rem; cursor: pointer; font-size: 0.9375rem; border-bottom: 1px solid #f1f5f9; } .autocomplete-item:hover, .autocomplete-item.active { background-color: #f1f5f9; } .autocomplete-item .codmat { font-weight: 600; color: #1e293b; } .autocomplete-item .denumire { color: #64748b; font-size: 0.875rem; } /* ── Tooltip for Client/Cont ─────────────────────── */ .tooltip-cont { position: relative; cursor: default; } .tooltip-cont::after { content: attr(data-tooltip); position: absolute; bottom: 125%; left: 50%; transform: translateX(-50%); background: #1f2937; color: #f9fafb; font-size: 0.75rem; padding: 0.3rem 0.6rem; border-radius: 4px; white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.15s; z-index: 10; } .tooltip-cont:hover::after { opacity: 1; } /* ── Sync card ───────────────────────────────────── */ .sync-card { background: #fff; border: 1px solid var(--border-color); border-radius: var(--card-radius); overflow: hidden; margin-bottom: 1rem; } .sync-card-controls { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; flex-wrap: wrap; } .sync-card-divider { height: 1px; background: var(--border-color); margin: 0; } .sync-card-info { display: flex; align-items: center; gap: 1rem; padding: 0.5rem 1rem; font-size: 1rem; color: var(--text-muted); cursor: pointer; transition: background 0.12s; } .sync-card-info:hover { background: #f9fafb; } .sync-card-progress { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; background: #eff6ff; font-size: 1rem; color: var(--blue-700); border-top: 1px solid #dbeafe; } /* ── Pulsing live dot (keep as-is) ──────────────── */ .sync-live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #3b82f6; animation: pulse-dot 1.2s ease-in-out infinite; flex-shrink: 0; } @keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.75); } } /* ── Status dot (keep as-is) ─────────────────────── */ .sync-status-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; } .sync-status-dot.idle { background: #9ca3af; } .sync-status-dot.running { background: #3b82f6; animation: pulse-dot 1.2s ease-in-out infinite; } .sync-status-dot.completed { background: #10b981; } .sync-status-dot.failed { background: #ef4444; } /* ── Custom period range inputs ──────────────────── */ .period-custom-range { display: none; gap: 0.375rem; align-items: center; font-size: 0.9375rem; } .period-custom-range.visible { display: flex; } /* ── select-compact (used in filter bars) ─────────── */ .select-compact { padding: 0.375rem 0.5rem; font-size: 0.9375rem; border: 1px solid #d1d5db; border-radius: 0.375rem; background: #fff; cursor: pointer; } /* ── btn-compact (kept for backward compat) ──────── */ .btn-compact { padding: 0.375rem 0.75rem; font-size: 0.9375rem; } /* ── Result banner ───────────────────────────────── */ .result-banner { padding: 0.4rem 0.75rem; border-radius: 0.375rem; font-size: 0.9375rem; background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; } /* ── Badge-pct (mappings page) ───────────────────── */ .badge-pct { font-size: 0.75rem; padding: 0.1rem 0.35rem; border-radius: 4px; font-weight: 600; } .badge-pct.complete { background: #d1fae5; color: #065f46; } .badge-pct.incomplete { background: #fef3c7; color: #92400e; } /* ── Context Menu ────────────────────────────────── */ .context-menu-trigger { background: none; border: none; color: #9ca3af; padding: 0.2rem 0.4rem; cursor: pointer; border-radius: 0.25rem; font-size: 1rem; line-height: 1; transition: color 0.12s, background 0.12s; } .context-menu-trigger:hover { color: var(--text-secondary); background: #f3f4f6; } .context-menu { position: fixed; background: #fff; border: 1px solid #e5e7eb; border-radius: 0.5rem; box-shadow: 0 4px 16px rgba(0,0,0,0.12); z-index: 1050; min-width: 150px; padding: 0.25rem 0; } .context-menu-item { display: block; width: 100%; text-align: left; padding: 0.45rem 0.9rem; font-size: 0.9375rem; background: none; border: none; cursor: pointer; color: var(--text-primary); transition: background 0.1s; } .context-menu-item:hover { background: #f3f4f6; } .context-menu-item.text-danger { color: #dc2626; } .context-menu-item.text-danger:hover { background: #fee2e2; } /* ── Pagination info strip ───────────────────────── */ .pag-strip { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.5rem 1rem; border-bottom: 1px solid var(--border-color); flex-wrap: wrap; } .pag-strip-bottom { border-bottom: none; border-top: 1px solid var(--border-color); } /* ── Per page selector ───────────────────────────── */ .per-page-label { display: flex; align-items: center; gap: 0.375rem; font-size: 0.9375rem; color: var(--text-muted); white-space: nowrap; } /* ── Mobile list vs desktop table ────────────────── */ .mobile-list { display: none; } /* ── Mappings flat-rows: always visible ────────────── */ .mappings-flat-list { display: block; } /* ── Mobile ⋯ dropdown ─────────────────────────── */ .mobile-more-dropdown { position: relative; display: inline-block; } .mobile-more-dropdown .dropdown-toggle::after { display: none; } /* ── Mobile segmented control (hidden on desktop) ── */ .mobile-seg { display: none; } /* ── Responsive ──────────────────────────────────── */ @media (max-width: 767.98px) { .top-navbar { padding: 0 0.5rem; gap: 0.5rem; } .navbar-brand { font-size: 0.875rem; } .nav-tab { padding: 0 0.625rem; font-size: 0.8125rem; } .main-content { padding-left: 0.75rem; padding-right: 0.75rem; } .filter-bar { gap: 0.375rem; } .filter-pill { padding: 0.25rem 0.5rem; font-size: 0.8125rem; } .search-input { min-width: 0; width: 100%; } .page-btn.page-number { display: none; } .page-btn.page-ellipsis { display: none; } .table-responsive { display: none; } .mobile-list { display: block; } /* Segmented filter control (replaces pills on mobile) */ .filter-bar .filter-pill { display: none; } .filter-bar .mobile-seg { display: flex; } /* Sync card compact */ .sync-card-controls { flex-direction: row; flex-wrap: wrap; gap: 0.375rem; padding: 0.5rem 0.75rem; } .sync-card-info { flex-wrap: wrap; gap: 0.375rem; font-size: 0.8rem; padding: 0.375rem 0.75rem; } /* Hide per-page selector on mobile */ .per-page-label { display: none; } } /* Mobile article cards in order detail modal */ .detail-item-card { border: 1px solid #e5e7eb; border-radius: 6px; padding: 0.5rem 0.75rem; margin-bottom: 0.5rem; font-size: 0.875rem; } .detail-item-card .card-sku { font-family: monospace; font-size: 0.8rem; color: #6b7280; } .detail-item-card .card-name { font-weight: 500; margin-bottom: 0.25rem; } .detail-item-card .card-details { display: flex; gap: 1rem; color: #374151; } /* Clickable CODMAT link in order detail modal */ .codmat-link { color: #0d6efd; cursor: pointer; text-decoration: underline; } .codmat-link:hover { color: #0a58ca; } /* Mobile article flat list in order detail modal */ .detail-item-flat { font-size: 0.85rem; } .detail-item-flat .dif-item { } .detail-item-flat .dif-item:nth-child(even) .dif-row { background: #f7f8fa; } .detail-item-flat .dif-row { display: flex; align-items: baseline; gap: 0.5rem; padding: 0.2rem 0.75rem; flex-wrap: wrap; } .dif-sku { font-family: monospace; font-size: 0.78rem; color: #6b7280; } .dif-name { font-weight: 500; flex: 1; } .dif-qty { white-space: nowrap; color: #6b7280; } .dif-val { white-space: nowrap; font-weight: 600; } .dif-codmat-link { color: #0d6efd; cursor: pointer; font-size: 0.78rem; font-family: monospace; } .dif-codmat-link:hover { color: #0a58ca; text-decoration: underline; }