/* ==========================================================================
   10x Events — Design System CSS
   Typography: Inter (body), Archivo SemiExpanded (headings)
   Primary: #6902CD | Scale: 0.7 / 0.8 / 0.9 / 1.0 / 1.25rem
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Archivo+SemiExpanded:wght@800&display=swap');

:root {
    --primary: #6902CD;
    --primary-hover: #834AFC;
    --text: #343434;
    --text-muted: #888;
    --border: #e0e0e0;
    --bg-page: #f5f5f7;
    --bg-card: #fff;
    --bg-even-row: #fafafa;
    --bg-row-hover: #f3f0ff;
    --lavender-bg: #f8f4ff;
    --lavender-border: #e0d4f5;
    --success: #43a047;
    --error: #e53935;
    --warning-bg: #fff8e1;
    --warning-border: #ffe082;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Archivo SemiExpanded', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-hover: 0 4px 12px rgba(105,2,205,0.15);
    --sidebar-width: 48px;
    --header-height: 48px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2 { font-family: var(--font-heading); font-weight: 800; letter-spacing: -0.02em; color: var(--text); margin: 0 0 0.5rem; }
h1 { font-size: 1.25rem; }
h2 { font-size: 1.25rem; }
h3 { font-family: var(--font-heading); font-weight: 800; font-size: 1rem; margin: 0 0 0.4rem; }
h4, h5 { font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; color: var(--primary); margin: 0 0 0.3rem; }
p { margin: 0 0 0.75rem; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }

/* ==========================================================================
   Header
   ========================================================================== */
.global-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    z-index: 200;
    box-shadow: 0 2px 8px rgba(105,2,205,0.2);
}
.header-left { display: flex; align-items: center; gap: 0.75rem; }
.header-logo-img { height: 22px; filter: brightness(0) invert(1); }
.header-app-name { font-size: 0.9rem; font-weight: 600; letter-spacing: 0.3px; }
.header-right { display: flex; align-items: center; gap: 0.75rem; }
.tenant-selector { display: flex; align-items: center; gap: 0.4rem; }
.tenant-selector select { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius-md); padding: 0.35rem 0.6rem; font-size: 0.78rem; min-width: 220px; }
.tenant-selector select option { color: var(--text); background: #fff; }

/* ==========================================================================
   Sidebar
   ========================================================================== */
.sidebar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem 0;
    z-index: 150;
    overflow: hidden;
    transition: width 0.2s ease;
}
.sidebar:hover { width: 160px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 0.2rem; padding: 0 0.4rem; }
.sidebar-divider { height: 1px; background: rgba(255,255,255,0.2); margin: 0.5rem 0.8rem; }

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    width: 100%;
    text-align: left;
    transition: background 0.15s, color 0.15s;
    position: relative;
}
.nav-item:hover { background: rgba(255,255,255,0.12); color: #fff; }
.nav-item.active { background: rgba(255,255,255,0.18); color: #fff; }
.nav-item svg { flex-shrink: 0; }
.nav-label { opacity: 0; transition: opacity 0.15s; }
.sidebar:hover .nav-label { opacity: 1; }
.nav-badge { position: absolute; top: 4px; right: 4px; background: var(--error); color: #fff; font-size: 0.6rem; font-weight: 700; padding: 1px 4px; border-radius: 8px; min-width: 14px; text-align: center; }

/* ==========================================================================
   Main Area
   ========================================================================== */
.app-layout { display: flex; min-height: 100vh; padding-top: var(--header-height); }
.main-area { flex: 1; margin-left: var(--sidebar-width); padding: 2rem 2.5rem; min-height: calc(100vh - var(--header-height)); overflow-x: hidden; }

/* Pages */
.page { display: none; animation: fadeIn 0.2s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* Page title row: heading on the left, action (Refresh) aligned right. */
.page-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.4rem;
}
.page-title-row h3 { margin: 0; }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    border: 1px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.card:focus-within { border-color: var(--lavender-border); box-shadow: var(--shadow-hover); }

/* Event cards */
.event-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
    animation: cardIn 0.3s ease both;
    content-visibility: auto;
    max-width: 100%;
}
.event-card:hover { border-color: var(--lavender-border); box-shadow: var(--shadow-hover); }
@keyframes cardIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.event-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg-even-row);
}
.event-card-topic { font-weight: 600; font-size: 0.8rem; color: var(--text); }
.event-card-meta { display: flex; align-items: center; gap: 0.75rem; }
.event-card-time { font-size: 0.7rem; color: var(--text-muted); }
.event-card-actions { display: flex; gap: 0.3rem; }

.event-card-body { padding: 1rem 1.25rem; overflow-x: auto; max-width: 100%; }

/* Event type badges */
.badge { display: inline-block; padding: 0.15rem 0.5rem; border-radius: 20px; font-size: 0.7rem; font-weight: 600; }
.badge-insert { background: rgba(67,160,71,0.12); color: var(--success); }
.badge-update { background: rgba(30,136,229,0.12); color: #1e88e5; }
.badge-delete { background: rgba(229,57,53,0.12); color: var(--error); }

/* ==========================================================================
   Buttons
   ========================================================================== */
button, .btn-primary {
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.15s;
}
.btn-primary { background: var(--primary); color: #fff; padding: 0.6rem 1.2rem; font-size: 0.8rem; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(105,2,205,0.3); }
.btn-primary:active { transform: scale(0.97); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-secondary { background: transparent; color: var(--primary); border: 1px solid var(--primary); padding: 0.45rem 0.9rem; font-size: 0.78rem; border-radius: var(--radius-md); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-ghost { background: transparent; color: var(--text-muted); border: none; padding: 0.35rem 0.6rem; font-size: 0.78rem; }
.btn-ghost:hover { color: var(--primary); background: var(--bg-even-row); }
.btn-sm { padding: 0.35rem 0.7rem; font-size: 0.78rem; }
.btn-row { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }

/* ==========================================================================
   Forms
   ========================================================================== */
label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; color: var(--text-muted); display: block; margin-bottom: 0.3rem; }
input[type="text"], input[type="number"], select {
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-family: var(--font-body);
    background: var(--bg-card);
    color: var(--text);
    width: 100%;
    transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(105,2,205,0.1); }
.form-row { margin-bottom: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; }
.form-field.full-width { grid-column: 1 / -1; }

/* Radio group */
.radio-group { display: flex; gap: 1rem; }
.radio-group label { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; text-transform: none; font-weight: 500; cursor: pointer; color: var(--text); }

/* ==========================================================================
   Tables
   ========================================================================== */
table.data-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
table.data-table th { background: var(--primary); color: #fff; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.3px; padding: 0.7rem 1rem; text-align: left; position: sticky; top: 0; z-index: 1; }
table.data-table th:first-child { border-top-left-radius: var(--radius-lg); }
table.data-table th:last-child { border-top-right-radius: var(--radius-lg); }
table.data-table td { padding: 0.7rem 1rem; font-size: 0.8rem; border-bottom: 1px solid var(--border); }
table.data-table tr:last-child td { border-bottom: none; }
table.data-table tr:nth-child(even) td { background: var(--bg-even-row); }
table.data-table tr:hover td { background: var(--bg-row-hover); transition: background 0.15s; }

/* ==========================================================================
   Event Table Renderer
   ========================================================================== */
.event-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; background: var(--lavender-bg); border-radius: var(--radius-md); overflow: hidden; }
.event-table td { padding: 0.4rem 0.8rem; border-bottom: 1px solid var(--lavender-border); vertical-align: top; }
.event-table tr:last-child td { border-bottom: none; }
.event-table .key-cell { font-weight: 600; color: var(--primary); white-space: nowrap; width: 35%; }
.event-table .section-header { font-weight: 700; color: var(--text); font-size: 0.85rem; background: rgba(105,2,205,0.04); cursor: pointer; }
.event-table .section-header:hover { background: rgba(105,2,205,0.08); }
.event-table .val-string { color: var(--text); }
.event-table .val-number { color: navy; }
.event-table .val-boolean { color: teal; }
.event-table .val-null { color: #999; font-style: italic; }
.event-table .val-date { color: var(--text-muted); }
.event-table .val-uuid { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.75rem; background: rgba(105,2,205,0.06); padding: 0.1rem 0.3rem; border-radius: 3px; cursor: pointer; }
.event-table .val-uuid:hover { background: rgba(105,2,205,0.12); }
.event-table .key-link { color: var(--primary); cursor: pointer; text-decoration: underline; text-decoration-style: dotted; }
.event-table .key-link:hover { text-decoration-style: solid; }
.event-table .nested-indent { padding-left: 1.5rem; }
.event-table .array-header { color: var(--text-muted); cursor: pointer; }
.event-table .toggle-icon { display: inline-block; width: 12px; transition: transform 0.15s; }
.event-table .toggle-icon.open { transform: rotate(90deg); }

/* ==========================================================================
   JSON Renderer
   ========================================================================== */
.json-view { font-family: 'SF Mono', 'Fira Code', Menlo, monospace; font-size: 0.78rem; line-height: 1.6; background: var(--lavender-bg); border-radius: var(--radius-md); padding: 1rem 1.25rem; overflow-x: auto; white-space: pre-wrap; word-break: break-all; }
.json-key { color: brown; font-weight: 600; }
.json-string { color: olive; }
.json-number { color: navy; }
.json-boolean { color: teal; }
.json-null { color: #999; }
.json-toggle { cursor: pointer; user-select: none; color: var(--text-muted); }
.json-toggle:hover { color: var(--primary); }
.json-collapsed-preview { color: var(--text-muted); font-style: italic; font-size: 0.72rem; }
.json-indent { display: inline-block; }
.json-link { color: var(--primary); cursor: pointer; text-decoration: underline dotted; }
.json-link:hover { text-decoration-style: solid; }
.json-uuid { background: rgba(105,2,205,0.06); padding: 0.05rem 0.2rem; border-radius: 2px; }

/* ==========================================================================
   View Toggle
   ========================================================================== */
.view-toggle { display: inline-flex; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.view-toggle button { border: none; background: var(--bg-card); padding: 0.35rem 0.8rem; font-size: 0.75rem; font-weight: 600; cursor: pointer; color: var(--text-muted); transition: all 0.15s; }
.view-toggle button.active { background: var(--primary); color: #fff; }
.view-toggle button:hover:not(.active) { background: var(--bg-row-hover); }

/* ==========================================================================
   Empty States
   ========================================================================== */
.empty-state { text-align: center; padding: 3rem 2rem; color: var(--text-muted); }
.empty-state-icon { font-size: 2.5rem; margin-bottom: 0.75rem; opacity: 0.5; }
.empty-state h4 { color: var(--text); margin-bottom: 0.4rem; }
.empty-state p { font-size: 0.8rem; max-width: 400px; margin: 0 auto; }
.empty-state .arrow-hint { display: inline-block; margin-top: 0.5rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ==========================================================================
   Loading Skeletons
   ========================================================================== */
.skeleton { background: linear-gradient(90deg, var(--bg-even-row) 25%, #eee 50%, var(--bg-even-row) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-md); }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-card { height: 120px; margin-bottom: 1rem; }
.skeleton-row { height: 20px; margin-bottom: 0.5rem; }

/* ==========================================================================
   Scroll to Top
   ========================================================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(105,2,205,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, opacity 0.15s;
    z-index: 50;
}
.scroll-top-btn:hover { transform: scale(1.1); }

/* ==========================================================================
   Modal
   ========================================================================== */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.3); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 1000; }
.modal-content { background: var(--bg-card); border-radius: var(--radius-lg); padding: 0; max-width: 560px; width: 90%; box-shadow: 0 20px 60px rgba(0,0,0,0.2); overflow: hidden; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 1rem; margin: 0; }
.modal-close { background: none; border: none; font-size: 1.5rem; color: var(--text-muted); cursor: pointer; padding: 0; line-height: 1; }
.modal-body { padding: 1.25rem 1.5rem; font-size: 0.85rem; }
.modal-footer { display: flex; justify-content: flex-end; gap: 0.6rem; padding: 1rem 1.5rem; border-top: 1px solid var(--border); }

/* ==========================================================================
   Onboarding
   ========================================================================== */
.onboarding-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; z-index: 2000; }
.onboarding-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 2.5rem; max-width: 440px; width: 90%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.onboarding-card h2 { font-family: var(--font-heading); margin-bottom: 0.5rem; }
.onboarding-card p { color: var(--text-muted); margin-bottom: 1.5rem; }
.onboarding-steps { text-align: left; margin-bottom: 1.5rem; }
.onboarding-step { display: flex; align-items: center; gap: 0.75rem; padding: 0.6rem 0; }
.step-number { width: 24px; height: 24px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }

/* ==========================================================================
   Toast
   ========================================================================== */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 3000; display: flex; flex-direction: column; gap: 0.5rem; }
.toast { padding: 0.75rem 1.2rem; border-radius: 10px; color: #fff; font-size: 0.8rem; font-weight: 500; animation: slideIn 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.toast-success { background: var(--success); }
.toast-error { background: var(--error); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ==========================================================================
   Copy Feedback
   ========================================================================== */
.copy-flash { animation: copyPulse 0.3s ease; }
@keyframes copyPulse { 0% { background: rgba(67,160,71,0.2); } 100% { background: transparent; } }

/* Refresh button icon spin while a fetch is in flight. */
.btn-icon.spinning { animation: spin 0.7s linear infinite; transform-origin: 50% 50%; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ==========================================================================
   Connection Status (Stream)
   ========================================================================== */
.status-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 0.4rem; }
.status-dot.connected { background: var(--success); animation: pulse 2s infinite; }
.status-dot.disconnected { background: var(--border); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ==========================================================================
   Diff highlighting (UPDATE events)
   ========================================================================== */
.diff-changed { background: rgba(67,160,71,0.1); }
.diff-old-value { font-size: 0.68rem; color: var(--text-muted); margin-left: 0.4rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .sidebar { width: 0; }
    .sidebar:hover { width: 160px; }
    .main-area { margin-left: 0; }
    .breadcrumb { left: 0; }
    .form-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-muted { color: var(--text-muted); }
.monospace { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.75rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }


/* ==========================================================================
   Timeline View
   ========================================================================== */
.timeline-container {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}
/* Right-edge fade: only shown when the strip overflows (.is-scrollable),
   and hidden once scrolled to the end (.at-end). Signals "more to the right". */
.timeline-container::after {
    content: '';
    position: absolute;
    /* Cover only the strip area, not the header (keeps topic name/version visible). */
    top: auto;
    right: 0;
    bottom: 0;
    height: 74px;
    width: 3.5rem;
    pointer-events: none;
    background: linear-gradient(to right, rgba(255,255,255,0), var(--bg-card) 60%);
    opacity: 0;
    transition: opacity 0.2s;
}
.timeline-container.is-scrollable::after {
    opacity: 1;
}
.timeline-container.is-scrollable.at-end::after {
    opacity: 0;
}
/* Inner scroll region: carries the horizontal scroll so the bordered
   container stays static and the scrollbar reads as a clear affordance. */
.timeline-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    /* Inner gutter so the strip/dots never touch the container edges. */
    padding: 0 0.75rem 0.5rem;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--primary) var(--border);
}
/* WebKit/Blink: always-visible slim scrollbar as the scroll cue. */
.timeline-scroll::-webkit-scrollbar {
    height: 8px;
}
.timeline-scroll::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 4px;
}
.timeline-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
.timeline-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    opacity: 0.85;
}
.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}
.timeline-header h4 { margin: 0; font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.timeline-strip {
    position: relative;
    height: 48px;
    min-width: 100%;
}
.timeline-axis {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    transform: translateY(-50%);
}
.timeline-dot {
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.timeline-dot:hover {
    transform: translate(-50%, -50%) scale(1.5);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 10;
}
.timeline-dot.active {
    transform: translate(-50%, -50%) scale(1.6);
    box-shadow: 0 0 0 3px rgba(105,2,205,0.3);
}
.timeline-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    color: var(--text-muted);
}
.timeline-legend {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.68rem;
    color: var(--text-muted);
}
.timeline-legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.timeline-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
