8d2766efb6
Stable map grid, no fitBounds on world view, entity PATCH edit form, CRM buttons on distributors, and loading animation for sync/wait states.
442 lines
20 KiB
CSS
442 lines
20 KiB
CSS
/* Export Intel — page layout */
|
|
.ei-page { --ei-accent: #0ea5e9; }
|
|
.ei-header { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
|
|
.ei-header h1 { font-size: 1.5rem; margin: 0; }
|
|
.ei-subtitle { color: #94a3b8; font-size: 0.85rem; margin: 0.25rem 0 0; }
|
|
.ei-phase-badge { font-size: 0.65rem; padding: 0.15rem 0.5rem; border-radius: 999px; background: rgba(14,165,233,0.15); color: #7dd3fc; border: 1px solid rgba(14,165,233,0.3); }
|
|
.ei-kpi-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 0.65rem; margin-bottom: 1rem; }
|
|
.ei-kpi { padding: 0.65rem 0.75rem; border-radius: 12px; background: rgba(10,14,20,0.85); border: 1px solid rgba(148,163,184,0.12); }
|
|
.ei-kpi span { display: block; font-size: 0.7rem; color: #94a3b8; }
|
|
.ei-kpi strong { font-size: 1.25rem; color: #e2e8f0; }
|
|
.ei-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-bottom: 1rem; }
|
|
.ei-filters select, .ei-filters input { font-size: 0.8rem; padding: 0.4rem 0.6rem; border-radius: 8px; border: 1px solid rgba(148,163,184,0.2); background: #0f1419; color: #e2e8f0; }
|
|
|
|
.ei-filter-bar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: flex-end;
|
|
gap: 0.65rem 1rem;
|
|
margin-bottom: 1rem;
|
|
padding: 0.75rem 1rem;
|
|
background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(15,20,25,0.95));
|
|
border: 1px solid rgba(148,163,184,0.15);
|
|
border-radius: 12px;
|
|
}
|
|
.ei-filter-group { display: flex; flex-wrap: wrap; gap: 0.5rem 0.75rem; align-items: flex-end; }
|
|
.ei-filter-group-search { flex: 1 1 200px; min-width: 180px; }
|
|
.ei-filter-label { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em; color: #94a3b8; font-weight: 600; }
|
|
.ei-filter-label select,
|
|
.ei-filter-label input {
|
|
font-size: 0.82rem;
|
|
padding: 0.45rem 0.65rem;
|
|
border-radius: 8px;
|
|
border: 1px solid rgba(148,163,184,0.22);
|
|
background: #0a0e12;
|
|
color: #e2e8f0;
|
|
min-width: 8rem;
|
|
}
|
|
.ei-filter-search-wrap input { width: 100%; min-width: 0; }
|
|
.ei-filter-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
|
|
.ei-filter-meta { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; }
|
|
.ei-filter-count { font-size: 0.75rem; color: #64748b; white-space: nowrap; }
|
|
.ei-filter-clear { font-size: 0.72rem; opacity: 0.85; }
|
|
|
|
.ei-split { align-items: stretch; }
|
|
.ei-split > .ei-map-wrap { grid-column: 1; }
|
|
.ei-split > .ei-panel { grid-column: 2; }
|
|
|
|
.ei-progress-overlay {
|
|
position: fixed; inset: 0; z-index: 1200;
|
|
display: flex; align-items: center; justify-content: center;
|
|
background: rgba(4, 8, 14, 0.55); backdrop-filter: blur(2px);
|
|
}
|
|
.ei-progress-card {
|
|
min-width: 260px; max-width: 90vw; padding: 1.1rem 1.25rem;
|
|
border-radius: 14px; border: 1px solid rgba(56, 189, 248, 0.35);
|
|
background: rgba(10, 14, 20, 0.95); text-align: center;
|
|
box-shadow: 0 12px 40px rgba(0,0,0,0.45);
|
|
}
|
|
.ei-progress-card p { margin: 0.65rem 0 0.85rem; color: #e2e8f0; font-size: 0.88rem; }
|
|
.ei-progress-spinner {
|
|
width: 28px; height: 28px; margin: 0 auto; border-radius: 50%;
|
|
border: 3px solid rgba(56, 189, 248, 0.2); border-top-color: #38bdf8;
|
|
animation: ei-spin 0.75s linear infinite;
|
|
}
|
|
.ei-progress-bar {
|
|
height: 4px; border-radius: 999px; background: rgba(148, 163, 184, 0.2); overflow: hidden;
|
|
}
|
|
.ei-progress-bar-fill {
|
|
height: 100%; width: 35%; border-radius: 999px;
|
|
background: linear-gradient(90deg, #0ea5e9, #38bdf8, #0ea5e9);
|
|
background-size: 200% 100%; animation: ei-progress-slide 1.2s ease-in-out infinite;
|
|
}
|
|
@keyframes ei-progress-slide {
|
|
0% { transform: translateX(-120%); }
|
|
100% { transform: translateX(320%); }
|
|
}
|
|
|
|
.ei-th-actions, .ei-td-actions { white-space: nowrap; width: 1%; }
|
|
.ei-td-actions { display: flex; gap: 0.25rem; flex-wrap: wrap; }
|
|
.ei-td-actions .btn { padding: 0.2rem 0.45rem; font-size: 0.68rem; }
|
|
|
|
.ei-drawer-edit { margin: 1rem 0; padding: 0.85rem; border-radius: 12px; border: 1px solid rgba(56,189,248,0.25); background: rgba(8,12,18,0.6); }
|
|
.ei-drawer-edit h4 { margin: 0 0 0.65rem; font-size: 0.85rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }
|
|
.ei-edit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
|
|
.ei-edit-grid label { display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.68rem; color: #64748b; text-transform: uppercase; }
|
|
.ei-edit-grid input, .ei-edit-grid select, .ei-edit-grid textarea {
|
|
padding: 0.45rem 0.55rem; border-radius: 8px; border: 1px solid rgba(148,163,184,0.2);
|
|
background: rgba(15,23,42,0.8); color: #e2e8f0; font-size: 0.82rem;
|
|
}
|
|
.ei-edit-full { grid-column: 1 / -1; }
|
|
.ei-edit-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
|
|
|
|
.ei-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; min-height: 420px; }
|
|
@media (max-width: 900px) { .ei-split { grid-template-columns: 1fr; } }
|
|
|
|
.ei-map-wrap { position: relative; }
|
|
.ei-map-loading {
|
|
position: absolute; inset: 0; z-index: 500;
|
|
display: flex; align-items: center; justify-content: center; gap: 0.65rem;
|
|
background: rgba(8, 12, 18, 0.72); color: #94a3b8; font-size: 0.85rem;
|
|
pointer-events: none;
|
|
}
|
|
.ei-map-spinner {
|
|
width: 18px; height: 18px; border-radius: 50%;
|
|
border: 2px solid rgba(56, 189, 248, 0.25);
|
|
border-top-color: #38bdf8;
|
|
animation: ei-spin 0.8s linear infinite;
|
|
}
|
|
@keyframes ei-spin { to { transform: rotate(360deg); } }
|
|
.ei-map-truncated { margin: 0 0 0.65rem; font-size: 0.75rem; color: #64748b; }
|
|
|
|
.ei-map-error { margin: 0 0 0.65rem; padding: 0.65rem 0.85rem; border-radius: 10px; border: 1px solid rgba(251,113,133,0.35); background: rgba(127,29,29,0.25); color: #fecdd3; font-size: 0.82rem; }
|
|
.ei-map-wrap { border-radius: 14px; overflow: hidden; border: 1px solid rgba(14,165,233,0.2); height: 420px; min-height: 420px; background: #0a0e14; }
|
|
.ei-map-wrap #ei-map { height: 420px; width: 100%; }
|
|
|
|
/* Leaflet popups — rich card */
|
|
.ei-map-wrap .leaflet-popup-content-wrapper,
|
|
.ei-map-wrap .leaflet-popup-tip {
|
|
background: #0f1724;
|
|
color: #e2e8f0;
|
|
border: 1px solid rgba(56, 189, 248, 0.35);
|
|
box-shadow: 0 8px 32px rgba(0,0,0,0.55);
|
|
}
|
|
.ei-map-wrap .leaflet-popup-content-wrapper { border-radius: 12px; padding: 0; }
|
|
.ei-map-wrap .leaflet-popup-content { margin: 0; min-width: 260px; line-height: 1.35; }
|
|
.ei-map-wrap .leaflet-popup-close-button {
|
|
color: #94a3b8 !important; font-size: 1.2rem; padding: 6px 8px 0 0;
|
|
}
|
|
.ei-map-wrap .leaflet-popup-close-button:hover { color: #fff !important; background: transparent !important; }
|
|
|
|
.ei-popup-card { padding: 0.85rem 1rem 1rem; }
|
|
.ei-popup-top { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; }
|
|
.ei-popup-badge {
|
|
font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
|
|
color: var(--badge-color, #38bdf8);
|
|
background: rgba(56, 189, 248, 0.12);
|
|
padding: 0.2rem 0.5rem; border-radius: 6px;
|
|
}
|
|
.ei-popup-flag { font-size: 0.72rem; font-weight: 800; color: #64748b; }
|
|
.ei-map-wrap .leaflet-popup-content .ei-popup-name {
|
|
display: block; margin: 0 0 0.6rem; font-size: 1rem; font-weight: 700;
|
|
color: #f8fafc !important; line-height: 1.3;
|
|
}
|
|
.ei-popup-grid { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.75rem; }
|
|
.ei-popup-row { display: grid; grid-template-columns: 72px 1fr; gap: 0.35rem; font-size: 0.78rem; }
|
|
.ei-popup-k { color: #64748b; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.03em; }
|
|
.ei-popup-v { color: #cbd5e1; word-break: break-word; }
|
|
.ei-popup-v a { color: #38bdf8; text-decoration: none; }
|
|
.ei-popup-v a:hover { text-decoration: underline; }
|
|
.ei-popup-actions { border-top: 1px solid rgba(148,163,184,0.15); padding-top: 0.65rem; }
|
|
.ei-popup-btn {
|
|
width: 100%; border: none; border-radius: 8px; padding: 0.5rem 0.75rem;
|
|
font-size: 0.8rem; font-weight: 600; cursor: pointer;
|
|
background: linear-gradient(135deg, #0ea5e9, #0284c7); color: #fff;
|
|
}
|
|
.ei-popup-btn:hover { filter: brightness(1.08); }
|
|
|
|
.ei-seg-toggle {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.35rem;
|
|
align-items: center;
|
|
}
|
|
.ei-seg-btn {
|
|
font-size: 0.78rem;
|
|
padding: 0.35rem 0.65rem;
|
|
border-radius: 8px;
|
|
border: 1px solid rgba(148,163,184,0.25);
|
|
background: rgba(15,20,25,0.85);
|
|
color: #94a3b8;
|
|
cursor: pointer;
|
|
transition: border-color 0.15s, color 0.15s, background 0.15s;
|
|
}
|
|
.ei-seg-btn:hover { color: #e2e8f0; border-color: rgba(14,165,233,0.45); }
|
|
.ei-seg-btn.active {
|
|
color: #f8fafc;
|
|
border-color: rgba(14,165,233,0.65);
|
|
background: rgba(14,165,233,0.18);
|
|
box-shadow: 0 0 0 1px rgba(14,165,233,0.2);
|
|
}
|
|
|
|
.ei-filter-group-maptypes { flex: 1 1 100%; max-width: 100%; }
|
|
.ei-type-chips {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.35rem;
|
|
align-items: center;
|
|
}
|
|
.ei-type-chip {
|
|
font-size: 0.72rem;
|
|
padding: 0.3rem 0.55rem;
|
|
border-radius: 999px;
|
|
border: 1px solid rgba(148,163,184,0.22);
|
|
background: rgba(15,20,25,0.9);
|
|
color: #94a3b8;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
.ei-type-chip:hover { color: #e2e8f0; border-color: rgba(14,165,233,0.4); }
|
|
.ei-type-chip.active {
|
|
color: #f0fdf4;
|
|
border-color: rgba(34,197,94,0.55);
|
|
background: rgba(34,197,94,0.12);
|
|
}
|
|
|
|
.ei-filter-group-halal {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
.ei-filter-check {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
font-size: 0.78rem;
|
|
color: #cbd5e1;
|
|
cursor: pointer;
|
|
}
|
|
.ei-halal-min {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.4rem;
|
|
font-size: 0.75rem;
|
|
}
|
|
.ei-halal-min input[type=range] { width: 90px; }
|
|
|
|
.ei-legend-row { display: flex; flex-wrap: wrap; gap: 0.65rem 1rem; }
|
|
.ei-pin-hot .ei-pin-ring { box-shadow: 0 0 0 3px rgba(34,197,94,0.45); }
|
|
|
|
.ei-halal-markets { margin-bottom: 0.85rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(148,163,184,0.12); }
|
|
.ei-halal-markets h4 { margin: 0 0 0.45rem; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: #64748b; }
|
|
.ei-halal-market-row {
|
|
display: grid;
|
|
grid-template-columns: 36px 1fr auto;
|
|
gap: 0.35rem;
|
|
align-items: center;
|
|
font-size: 0.78rem;
|
|
padding: 0.25rem 0;
|
|
}
|
|
.ei-halal-market-row:hover { color: #38bdf8; }
|
|
.ei-halal-score { color: #22c55e; font-size: 0.82rem; }
|
|
.ei-halal-pill {
|
|
display: inline-block;
|
|
min-width: 2rem;
|
|
text-align: center;
|
|
padding: 0.1rem 0.35rem;
|
|
border-radius: 6px;
|
|
font-size: 0.72rem;
|
|
font-weight: 700;
|
|
}
|
|
.ei-halal-pill.ei-halal-hot { background: rgba(34,197,94,0.2); color: #4ade80; }
|
|
.ei-halal-pill.ei-halal-warm { background: rgba(234,179,8,0.2); color: #facc15; }
|
|
.ei-halal-pill.ei-halal-mild { background: rgba(249,115,22,0.2); color: #fb923c; }
|
|
|
|
.ei-list-focus {
|
|
margin-bottom: 0.85rem;
|
|
padding: 0.75rem;
|
|
border-radius: 12px;
|
|
border: 1px solid rgba(34,197,94,0.35);
|
|
background: rgba(34,197,94,0.06);
|
|
}
|
|
.ei-list-focus-head { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
|
|
.ei-list-focus-title { margin: 0 0 0.35rem; font-size: 0.95rem; color: #f8fafc; line-height: 1.3; }
|
|
.ei-list-focus-meta { margin: 0 0 0.65rem; font-size: 0.75rem; color: #94a3b8; }
|
|
.ei-list-focus-kv { display: grid; grid-template-columns: 72px 1fr; gap: 0.3rem; font-size: 0.78rem; margin-bottom: 0.3rem; }
|
|
.ei-list-focus-kv span:first-child { color: #64748b; }
|
|
.ei-list-focus-kv a { color: #38bdf8; word-break: break-all; }
|
|
.ei-list-focus-actions { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.65rem; }
|
|
.ei-halal-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.5rem 0; }
|
|
.ei-halal-tag {
|
|
font-size: 0.68rem;
|
|
padding: 0.15rem 0.45rem;
|
|
border-radius: 6px;
|
|
background: rgba(14,165,233,0.12);
|
|
color: #7dd3fc;
|
|
border: 1px solid rgba(14,165,233,0.2);
|
|
}
|
|
.ei-row-active { background: rgba(14,165,233,0.12) !important; }
|
|
.ei-row-name { font-weight: 600; color: #e2e8f0; }
|
|
.ei-contact-cell { font-size: 0.72rem; color: #94a3b8; max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
.ei-type-pill-sm { font-size: 0.65rem; padding: 0.1rem 0.35rem; }
|
|
.ei-contact-row-compact { margin-bottom: 0.45rem; font-size: 0.78rem; }
|
|
.ei-contact-source { display: block; font-size: 0.68rem; color: #64748b; }
|
|
.ei-drawer-coords { font-size: 0.78rem; color: #94a3b8; }
|
|
.ei-drawer-coords a { margin-left: 0.5rem; color: #38bdf8; }
|
|
|
|
.ei-selection-bar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 0.65rem;
|
|
margin: 0.5rem 0 0.75rem;
|
|
padding: 0.55rem 0.75rem;
|
|
border-radius: 10px;
|
|
border: 1px solid rgba(14,165,233,0.25);
|
|
background: rgba(14,165,233,0.06);
|
|
}
|
|
.ei-selection-actions { display: flex; flex-wrap: wrap; gap: 0.4rem; }
|
|
.ei-selection-count { font-size: 0.78rem; font-weight: 700; color: #38bdf8; }
|
|
.ei-selection-hint { font-size: 0.72rem; color: #64748b; }
|
|
|
|
.ei-th-check, .ei-td-check { width: 28px; text-align: center; }
|
|
.ei-th-fav, .ei-td-fav { width: 32px; text-align: center; }
|
|
.ei-fav-btn {
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
color: #64748b;
|
|
padding: 0;
|
|
line-height: 1;
|
|
}
|
|
.ei-fav-btn.active, .ei-fav-btn:hover { color: #facc15; }
|
|
.ei-row-selected { background: rgba(14,165,233,0.08) !important; }
|
|
.ei-row-crm .ei-row-name { padding-right: 0.25rem; }
|
|
.ei-crm-badge {
|
|
display: inline-block;
|
|
margin-left: 0.35rem;
|
|
font-size: 0.58rem;
|
|
font-weight: 800;
|
|
padding: 0.1rem 0.35rem;
|
|
border-radius: 4px;
|
|
background: rgba(34,197,94,0.2);
|
|
color: #4ade80;
|
|
vertical-align: middle;
|
|
}
|
|
.ei-filter-fav { color: #facc15 !important; margin-left: 0.35rem; }
|
|
.ei-pipeline-hint { font-size: 0.82rem; color: #94a3b8; margin: 0 0 1rem; }
|
|
|
|
.ei-modal-root { position: fixed; inset: 0; z-index: 1300; display: flex; align-items: center; justify-content: center; padding: 1rem; }
|
|
.ei-modal-card {
|
|
position: relative;
|
|
z-index: 1302;
|
|
width: min(420px, 96vw);
|
|
padding: 1.25rem;
|
|
border-radius: 14px;
|
|
background: #0f1419;
|
|
border: 1px solid rgba(14,165,233,0.35);
|
|
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
|
|
}
|
|
.ei-modal-card h3 { margin: 0 0 0.5rem; color: #f8fafc; }
|
|
.ei-modal-card p { font-size: 0.85rem; color: #94a3b8; margin: 0 0 0.75rem; }
|
|
.ei-modal-note { font-size: 0.75rem !important; color: #64748b !important; }
|
|
.ei-modal-actions { display: flex; justify-content: flex-end; gap: 0.5rem; margin-top: 1rem; }
|
|
|
|
/* Map pins */
|
|
.ei-pin-wrap { background: transparent !important; border: none !important; }
|
|
.ei-pin {
|
|
width: 30px; height: 30px; position: relative;
|
|
display: flex; align-items: center; justify-content: center;
|
|
}
|
|
.ei-pin-ring {
|
|
position: absolute; inset: 0; border-radius: 50%;
|
|
background: var(--pin-color);
|
|
border: 2px solid rgba(255,255,255,0.9);
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.45);
|
|
}
|
|
.ei-pin-icon { position: relative; z-index: 1; font-size: 14px; line-height: 1; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.3)); }
|
|
|
|
/* Clusters */
|
|
.ei-cluster-wrap { background: transparent !important; border: none !important; }
|
|
.ei-cluster {
|
|
width: 44px; height: 44px; border-radius: 50%;
|
|
display: flex; align-items: center; justify-content: center;
|
|
background: linear-gradient(135deg, #0ea5e9, #0369a1);
|
|
border: 2px solid rgba(255,255,255,0.55);
|
|
box-shadow: 0 4px 16px rgba(14,165,233,0.45);
|
|
color: #fff; font-weight: 800; font-size: 0.85rem;
|
|
}
|
|
.ei-cluster-md { width: 50px; height: 50px; font-size: 0.9rem; background: linear-gradient(135deg, #8b5cf6, #6d28d9); box-shadow: 0 4px 16px rgba(139,92,246,0.45); }
|
|
.ei-cluster-lg { width: 56px; height: 56px; font-size: 0.95rem; background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 16px rgba(245,158,11,0.45); }
|
|
.ei-map-wrap .marker-cluster-small,
|
|
.ei-map-wrap .marker-cluster-medium,
|
|
.ei-map-wrap .marker-cluster-large { background: transparent !important; }
|
|
.ei-map-wrap .marker-cluster-small div,
|
|
.ei-map-wrap .marker-cluster-medium div,
|
|
.ei-map-wrap .marker-cluster-large div { background: transparent !important; color: transparent !important; }
|
|
|
|
.ei-map-legend {
|
|
display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
|
|
margin-bottom: 0.65rem; font-size: 0.72rem; color: #94a3b8;
|
|
}
|
|
.ei-legend-item { display: inline-flex; align-items: center; gap: 0.3rem; }
|
|
.ei-leg-pin { font-style: normal; }
|
|
|
|
.ei-map-empty { margin-bottom: 0.65rem; }
|
|
.ei-map-empty-inner {
|
|
padding: 0.85rem 1rem;
|
|
border-radius: 10px;
|
|
background: rgba(245, 158, 11, 0.08);
|
|
border: 1px solid rgba(245, 158, 11, 0.25);
|
|
font-size: 0.82rem;
|
|
color: #cbd5e1;
|
|
}
|
|
.ei-map-empty-inner strong { display: block; color: #fbbf24; margin-bottom: 0.35rem; }
|
|
.ei-map-empty-inner p { margin: 0.25rem 0; }
|
|
.ei-map-empty-actions { display: flex; gap: 0.5rem; margin-top: 0.65rem; flex-wrap: wrap; }
|
|
|
|
.ei-panel { border-radius: 14px; padding: 0.75rem; background: rgba(10,14,20,0.85); border: 1px solid rgba(148,163,184,0.12); }
|
|
.ei-table-wrap { overflow-x: auto; max-height: 480px; }
|
|
.ei-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
|
|
.ei-table th, .ei-table td { padding: 0.5rem 0.6rem; text-align: left; border-bottom: 1px solid rgba(148,163,184,0.08); }
|
|
.ei-table th { color: #94a3b8; font-weight: 600; position: sticky; top: 0; background: #0f1419; }
|
|
.ei-table tr:hover td { background: rgba(14,165,233,0.05); }
|
|
.ei-empty { text-align: center; padding: 2rem; color: #64748b; }
|
|
.ei-empty-cta { margin-top: 0.75rem; }
|
|
.ei-type-pill { font-size: 0.65rem; padding: 0.1rem 0.45rem; border-radius: 6px; background: rgba(148,163,184,0.15); }
|
|
.ei-type-distributor { color: #fbbf24; }
|
|
.ei-type-wholesaler { color: #eab308; }
|
|
.ei-type-contract_caterer { color: #a78bfa; }
|
|
.ei-confidence { font-size: 0.65rem; color: #64748b; }
|
|
.ei-drawer-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1200; }
|
|
.ei-drawer-root { position: relative; z-index: 1201; }
|
|
.ei-drawer { position: fixed; top: 0; right: 0; width: min(480px, 100vw); height: 100vh; background: #0f1419; border-left: 1px solid rgba(14,165,233,0.2); z-index: 1202; overflow-y: auto; box-shadow: -8px 0 32px rgba(0,0,0,0.45); }
|
|
.ei-drawer-rich { width: min(480px, 100vw); padding: 0; display: flex; flex-direction: column; }
|
|
.ei-drawer-head { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(148,163,184,0.12); }
|
|
.ei-drawer-body { padding: 1rem; overflow-y: auto; flex: 1; }
|
|
.ei-drawer-hero { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.35rem; }
|
|
.ei-drawer-badge { font-size: 0.68rem; padding: 0.2rem 0.55rem; border-radius: 6px; background: rgba(148,163,184,0.15); text-transform: capitalize; }
|
|
.ei-drawer-flag { font-size: 0.75rem; font-weight: 800; color: #64748b; }
|
|
.ei-drawer-title { margin: 0 0 0.35rem; font-size: 1.25rem; line-height: 1.25; color: #f8fafc; }
|
|
.ei-drawer-meta { font-size: 0.78rem; color: #94a3b8; margin: 0 0 1rem; }
|
|
.ei-drawer-meta strong { color: #e2e8f0; }
|
|
.ei-drawer-section { margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(148,163,184,0.1); }
|
|
.ei-drawer-section h4 { margin: 0 0 0.5rem; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: #64748b; }
|
|
.ei-drawer-kv { display: grid; grid-template-columns: 88px 1fr; gap: 0.35rem; font-size: 0.82rem; margin-bottom: 0.35rem; }
|
|
.ei-drawer-kv span:first-child { color: #64748b; }
|
|
.ei-drawer-kv a { color: #38bdf8; word-break: break-all; }
|
|
.ei-drawer-empty { font-size: 0.78rem; color: #64748b; margin: 0; }
|
|
.ei-contact-row { padding: 0.5rem 0; border-bottom: 1px solid rgba(148,163,184,0.08); font-size: 0.82rem; }
|
|
.ei-contact-row a { color: #38bdf8; }
|
|
.ei-contact-role { font-size: 0.72rem; color: #64748b; margin-left: 0.35rem; }
|
|
.ei-drawer-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
|
|
.ei-sync-msg { font-size: 0.75rem; color: #7dd3fc; margin-top: 0.5rem; }
|
|
.ei-tab-panel-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
|
|
.ei-link-btn { background: none; border: none; padding: 0; color: #38bdf8; cursor: pointer; font: inherit; text-align: left; }
|
|
.ei-link-btn:hover { text-decoration: underline; }
|
|
.ei-td-actions { white-space: nowrap; }
|
|
.ei-load-more { display: flex; justify-content: center; padding: 1rem 0 0.5rem; }
|