/* ============================================================
   SmartCalc Pro — Workspace Scientific + Graphing Calculator
   Active in Add Math & Math workspaces
   ============================================================ */

#smartcalc-btn {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    color: #a5b4fc;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.16s ease;
}

#smartcalc-btn:hover,
#smartcalc-btn.active {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.6);
    color: #fff;
    transform: translateY(-1px);
}

#smartcalc-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1100;
}

#smartcalc-backdrop.open {
    display: block;
}

#smartcalc-panel {
    z-index: 1200;
    display: flex;
    flex-direction: column;
    font-family: 'Outfit', sans-serif;
    color: #e6edf3;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 0%, rgba(102, 126, 234, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
    border-left: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: -18px 0 48px rgba(0, 0, 0, 0.34);
}

@media (max-width: 768px) {
    #smartcalc-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: min(78vh, 720px);
        border-radius: 22px 22px 0 0;
        border-left: none;
        border-top: 1px solid rgba(148, 163, 184, 0.24);
        transform: translateY(100%);
        transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.25s ease;
        box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.46);
    }

    #smartcalc-panel.open {
        transform: translateY(0);
    }

    #smartcalc-panel::before {
        content: '';
        width: 42px;
        height: 4px;
        background: rgba(226, 232, 240, 0.26);
        border-radius: 999px;
        margin: 10px auto 0;
        flex-shrink: 0;
    }
}

@media (min-width: 769px) {
    body.smartcalc-open main {
        display: flex;
        flex-direction: row;
        width: 100%;
        overflow: hidden;
    }

    body.smartcalc-open #workspace-section {
        flex: 1;
        min-width: 0;
        transition: flex 0.34s cubic-bezier(0.32, 0.72, 0, 1);
    }

    @keyframes smartcalcSlidePaneIn {
        from {
            width: 0;
            opacity: 0;
        }
        to {
            width: 392px;
            opacity: 1;
        }
    }

    #smartcalc-panel {
        display: none;
        border-radius: 0;
    }

    #smartcalc-panel.open {
        display: flex;
        position: static;
        width: 392px;
        opacity: 1;
        visibility: visible;
        flex-shrink: 0;
        animation: smartcalcSlidePaneIn 0.34s cubic-bezier(0.32, 0.72, 0, 1);
    }

    #smartcalc-backdrop {
        display: none !important;
    }
}

.sc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    flex-shrink: 0;
}

.sc-header-title {
    font-size: 1rem;
    font-weight: 800;
    color: #c7d2fe;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-header-title i {
    color: #7dd3fc;
}

.sc-close-btn {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.14);
    color: rgba(226, 232, 240, 0.62);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: color 0.15s, background 0.15s, transform 0.15s;
}

.sc-close-btn:hover {
    color: #fff;
    background: rgba(148, 163, 184, 0.16);
    transform: translateY(-1px);
}

.sc-mode-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 18px 0;
    flex-shrink: 0;
}

.sc-mode-tab {
    flex: 1;
    padding: 8px 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 11px;
    color: rgba(226, 232, 240, 0.58);
    cursor: pointer;
    transition: all 0.18s;
}

.sc-mode-tab.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.32), rgba(14, 165, 233, 0.18));
    border-color: rgba(129, 140, 248, 0.62);
    color: #e0e7ff;
    box-shadow: 0 8px 22px rgba(79, 70, 229, 0.12);
}

.sc-sci-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sc-sci-panel.hidden {
    display: none;
}

.sc-history {
    max-height: 74px;
    overflow-y: auto;
    padding: 8px 18px;
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.22) transparent;
}

.sc-history-item {
    width: 100%;
    border: 0;
    text-align: right;
    color: rgba(203, 213, 225, 0.58);
    background: transparent;
    border-radius: 8px;
    padding: 4px 6px;
    font-size: 0.74rem;
    line-height: 1.4;
    cursor: pointer;
}

.sc-history-item:hover {
    color: #e2e8f0;
    background: rgba(148, 163, 184, 0.08);
}

.sc-history-item strong {
    color: #f8fafc;
}

.sc-display {
    padding: 4px 18px 12px;
    text-align: right;
    flex-shrink: 0;
}

.sc-expr-input {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(2, 6, 23, 0.62);
    color: #dbeafe;
    outline: none;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.86rem;
    text-align: right;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.sc-expr-input:focus {
    border-color: rgba(129, 140, 248, 0.72);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.16);
}

.sc-expr-input::placeholder {
    color: rgba(203, 213, 225, 0.36);
}

.sc-result {
    min-height: 46px;
    margin-top: 8px;
    font-size: clamp(1.65rem, 4vw, 2.2rem);
    font-weight: 500;
    color: #f8fafc;
    line-height: 1.15;
    word-break: break-all;
}

.sc-result.hint {
    color: rgba(203, 213, 225, 0.42);
    font-size: 1rem;
}

.sc-result.error {
    color: #fecaca;
}

.sc-kb-tabs {
    display: flex;
    gap: 5px;
    padding: 0 18px 10px;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .sc-kb-tabs {
        display: none;
    }
}

.sc-kb-tab {
    flex: 1;
    padding: 5px 0;
    font-size: 0.72rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 8px;
    color: rgba(226, 232, 240, 0.48);
    cursor: pointer;
    transition: all 0.15s;
}

.sc-kb-tab.active {
    background: rgba(99, 102, 241, 0.22);
    border-color: rgba(129, 140, 248, 0.45);
    color: #c7d2fe;
}

.sc-keys {
    flex: 1;
    overflow-y: auto;
    padding: 0 18px 18px;
    scrollbar-color: rgba(148, 163, 184, 0.2) transparent;
}

.sc-keys::-webkit-scrollbar {
    width: 4px;
}

.sc-keys::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.18);
    border-radius: 4px;
}

.sc-kb-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    align-content: start;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .sc-kb-group {
        display: none;
    }

    .sc-kb-group.active {
        display: grid;
    }
}

@media (min-width: 769px) {
    .sc-keys {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 8px;
        align-content: start;
        padding: 0 18px 22px;
        overflow-y: auto;
    }
}

.sc-key {
    min-height: 43px;
    padding: 10px 4px;
    font-size: 0.84rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 12px;
    color: #f8fafc;
    cursor: pointer;
    transition: background 0.12s, transform 0.08s, border-color 0.12s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-key:active {
    transform: scale(0.96);
}

.sc-key:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(129, 140, 248, 0.28);
}

.sc-key.fn {
    color: #93c5fd;
    background: rgba(96, 165, 250, 0.11);
    font-family: 'Cambria Math', 'Latin Modern Math', 'STIX Two Math', 'Times New Roman', serif;
    font-size: 0.88rem;
}

.sc-key.angle-deg {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.16);
    border-color: rgba(251, 191, 36, 0.38);
}

.sc-key.op {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.12);
    font-weight: 900;
    font-size: 1rem;
}

.sc-key.eq {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: rgba(129, 140, 248, 0.8);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(99, 102, 241, 0.28);
}

.sc-key.del {
    color: #fecaca;
    background: rgba(248, 113, 113, 0.13);
}

.sc-key.num {
    color: #f8fafc;
    font-weight: 850;
    font-size: 0.96rem;
}

.sc-key.wide {
    grid-column: span 2;
}

.sc-graph-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 18px 18px;
    gap: 10px;
    overflow: hidden;
}

.sc-graph-panel.hidden {
    display: none;
}

.sc-graph-controls {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    flex-shrink: 0;
}

.sc-graph-controls label {
    color: rgba(203, 213, 225, 0.58);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.sc-graph-controls input {
    width: 100%;
    margin-top: 3px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 9px;
    background: rgba(2, 6, 23, 0.54);
    color: #e6edf3;
    padding: 6px 7px;
    outline: none;
}

.sc-graph-controls input:focus {
    border-color: rgba(129, 140, 248, 0.62);
}

.sc-graph-topbar {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.sc-graph-line-add,
.sc-graph-icon-btn {
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(226, 232, 240, 0.76);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.sc-graph-line-add {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-color: rgba(129, 140, 248, 0.42);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.24), rgba(14, 165, 233, 0.14));
    color: #dbeafe;
}

.sc-graph-icon-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #bae6fd;
}

.sc-graph-line-add:hover,
.sc-graph-icon-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(125, 211, 252, 0.5);
    color: #fff;
}

@media (max-width: 420px) {
    .sc-graph-controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.sc-graph-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex-shrink: 0;
}

.sc-graph-ex-btn {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(148, 163, 184, 0.13);
    border-radius: 999px;
    color: rgba(226, 232, 240, 0.58);
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.15s;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.sc-graph-ex-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e6edf3;
}

.sc-graph-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    max-height: 154px;
    overflow-y: auto;
    flex-shrink: 0;
}

.sc-graph-line-row {
    display: grid;
    grid-template-columns: 12px auto minmax(0, 1fr) 30px;
    align-items: center;
    gap: 8px;
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.13);
    background: rgba(255, 255, 255, 0.045);
    color: #dbeafe;
    border-radius: 12px;
    padding: 7px 8px;
    font-size: 0.78rem;
    text-align: left;
}

.sc-graph-line-row:hover,
.sc-graph-line-row:focus-within {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(129, 140, 248, 0.36);
}

.sc-graph-swatch {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.sc-graph-y-label {
    color: rgba(226, 232, 240, 0.72);
    font-weight: 900;
    white-space: nowrap;
}

.sc-graph-line-input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #e6edf3;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.86rem;
    font-weight: 760;
    min-width: 0;
}

.sc-graph-line-input::placeholder {
    color: rgba(203, 213, 225, 0.32);
}

.sc-graph-line-remove {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: rgba(226, 232, 240, 0.48);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sc-graph-line-remove:hover {
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
}

.sc-graph-line-remove:disabled {
    opacity: 0.28;
    cursor: default;
    pointer-events: none;
}

.sc-graph-empty {
    margin: 0;
    color: rgba(203, 213, 225, 0.42);
    font-size: 0.78rem;
    text-align: center;
    padding: 6px;
}

.sc-graph-error {
    min-height: 18px;
    color: #fecaca;
    font-size: 0.76rem;
}

#sc-graph-container {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    min-height: 260px;
    touch-action: none;
}

.sc-graph-placeholder {
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 700;
    background:
        linear-gradient(#e2e8f0 1px, transparent 1px),
        linear-gradient(90deg, #e2e8f0 1px, transparent 1px);
    background-size: 28px 28px;
}

.sc-blank-graph {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: block;
    background: #ffffff;
}

.sc-blank-grid line {
    stroke: #e2e8f0;
    stroke-width: 1;
}

.sc-blank-axis {
    stroke: #0f172a;
    stroke-width: 2.2;
    opacity: 0.92;
}

.sc-blank-origin {
    fill: #6366f1;
    stroke: #ffffff;
    stroke-width: 2;
}

#sc-graph-container .function-plot text {
    fill: #0f172a !important;
    font-weight: 650;
}

#sc-graph-container .function-plot .axis path.domain {
    stroke: none !important;
}

#sc-graph-container .function-plot .origin path {
    stroke: #0f172a !important;
    stroke-width: 2.5px !important;
    opacity: 1 !important;
}

#sc-graph-container .function-plot .x.axis line,
#sc-graph-container .function-plot .y.axis line {
    stroke: #475569 !important;
    stroke-width: 1px !important;
}

#sc-graph-container .function-plot .grid line {
    stroke: #cbd5e1 !important;
    stroke-dasharray: 0 !important;
}

#sc-graph-container .sc-graph-intersection-dot {
    fill: #f43f5e;
    stroke: #ffffff;
    stroke-width: 2px;
    filter: drop-shadow(0 0 7px rgba(244, 63, 94, 0.75));
}

#sc-graph-container .sc-graph-intersection-label {
    fill: #0f172a;
    stroke: #ffffff;
    stroke-width: 3px;
    paint-order: stroke;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    pointer-events: none;
}

[data-theme="light"] #smartcalc-btn {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(99, 102, 241, 0.22);
    color: #667eea;
}

[data-theme="light"] #smartcalc-btn:hover,
[data-theme="light"] #smartcalc-btn.active {
    background: #eef2ff;
    border-color: rgba(99, 102, 241, 0.44);
    color: #4f46e5;
}

[data-theme="light"] #smartcalc-backdrop {
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

[data-theme="light"] #smartcalc-panel {
    background:
        radial-gradient(circle at 10% 0%, rgba(99, 102, 241, 0.09), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    color: #172033;
    border-left-color: rgba(99, 102, 241, 0.14);
    box-shadow: -18px 0 42px rgba(79, 70, 229, 0.12);
}

[data-theme="light"] #smartcalc-panel::before {
    background: rgba(71, 85, 105, 0.24);
}

[data-theme="light"] .sc-header {
    border-bottom-color: rgba(99, 102, 241, 0.14);
}

[data-theme="light"] .sc-header-title {
    color: #4f46e5;
}

[data-theme="light"] .sc-close-btn {
    background: #f1f5ff;
    border-color: rgba(99, 102, 241, 0.13);
    color: #64748b;
}

[data-theme="light"] .sc-close-btn:hover {
    color: #172033;
    background: #e0e7ff;
}

[data-theme="light"] .sc-mode-tab,
[data-theme="light"] .sc-kb-tab {
    background: #f3f6ff;
    border-color: rgba(99, 102, 241, 0.14);
    color: #64748b;
}

[data-theme="light"] .sc-mode-tab.active,
[data-theme="light"] .sc-kb-tab.active {
    background: #e9edff;
    border-color: rgba(99, 102, 241, 0.45);
    color: #4f46e5;
}

[data-theme="light"] .sc-history-item {
    color: #64748b;
}

[data-theme="light"] .sc-history-item:hover {
    color: #172033;
    background: rgba(99, 102, 241, 0.08);
}

[data-theme="light"] .sc-history-item strong {
    color: #172033;
}

[data-theme="light"] .sc-expr-input {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.2);
    color: #172033;
}

[data-theme="light"] .sc-expr-input::placeholder,
[data-theme="light"] .sc-graph-line-input::placeholder {
    color: rgba(71, 85, 105, 0.45);
}

[data-theme="light"] .sc-result {
    color: #172033;
}

[data-theme="light"] .sc-result.hint {
    color: #7c87a0;
}

[data-theme="light"] .sc-result.error {
    color: #b91c1c;
}

[data-theme="light"] .sc-key {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.13);
    color: #172033;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

[data-theme="light"] .sc-key:hover {
    background: #f3f6ff;
    border-color: rgba(99, 102, 241, 0.25);
}

[data-theme="light"] .sc-key.fn {
    color: #2563eb;
    background: #eef6ff;
}

[data-theme="light"] .sc-key.angle-deg {
    color: #b7791f;
    background: #fff7e6;
    border-color: rgba(245, 158, 11, 0.34);
}

[data-theme="light"] .sc-key.op {
    color: #b7791f;
    background: #fff7e6;
}

[data-theme="light"] .sc-key.del {
    color: #b91c1c;
    background: #fff1f2;
}

[data-theme="light"] .sc-key.eq {
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

[data-theme="light"] .sc-graph-ex-btn {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.14);
    color: #64748b;
}

[data-theme="light"] .sc-graph-ex-btn:hover {
    color: #172033;
    background: #f3f6ff;
}

[data-theme="light"] .sc-graph-controls label {
    color: #64748b;
}

[data-theme="light"] .sc-graph-controls input {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.16);
    color: #172033;
}

[data-theme="light"] .sc-graph-line-add,
[data-theme="light"] .sc-graph-icon-btn {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.14);
    color: #4f46e5;
}

[data-theme="light"] .sc-graph-line-add {
    background: #e9edff;
    border-color: rgba(99, 102, 241, 0.4);
    color: #4f46e5;
}

[data-theme="light"] .sc-graph-line-row {
    background: #ffffff;
    border-color: rgba(99, 102, 241, 0.12);
    color: #172033;
}

[data-theme="light"] .sc-graph-line-row:hover,
[data-theme="light"] .sc-graph-line-row:focus-within {
    background: #f3f6ff;
}

[data-theme="light"] .sc-graph-y-label,
[data-theme="light"] .sc-graph-line-input {
    color: #172033;
}

[data-theme="light"] .sc-graph-line-remove {
    color: #64748b;
}

[data-theme="light"] .sc-graph-line-remove:hover {
    color: #b91c1c;
    background: #fff1f2;
}

[data-theme="light"] .sc-graph-empty {
    color: #64748b;
}

/* ── Intersection scatter dots ───────────────────────────────────────────────
   function-plot's scatter renderer auto-injects <text> labels next to every
   point. skipTip:true only kills the crosshair tip, not these static labels.
   Hide them via CSS; coordinates are already shown in the text bar above. */
#sc-graph-container .scatter text {
    display: none !important;
}

/* Force scatter circles to render as solid dark dots regardless of how
   function-plot applies the `color` property (fill vs stroke varies by version). */
#sc-graph-container .scatter circle {
    fill:      #1f2937 !important;
    stroke:    #1f2937 !important;
    r:         5px;
    transform: none !important;
    margin:    0 !important;
    padding:   0 !important;
}

/* Prevent any global CSS from offsetting non-scatter SVG circles (e.g. axis ticks) */
#sc-graph-container circle {
    transform: none !important;
}
