﻿/* Valuation Engine workspace -------------------------------------------------
   This stylesheet intentionally scopes every rule under .ve-* so the legacy
   application styles remain unchanged outside of the Valuation Engine area. */

:root {
    --ve-bg: #f5f7fb;
    --ve-surface: #ffffff;
    --ve-surface-soft: #f8fafc;
    --ve-border: #d9e1ea;
    --ve-border-strong: #c7d2df;
    --ve-text: #1f2937;
    --ve-muted: #64748b;
    --ve-heading: #0f172a;
    --ve-primary: #1f5f99;
    --ve-primary-dark: #174c7c;
    --ve-primary-soft: #eaf3fb;
    --ve-success: #2f7d4a;
    --ve-success-soft: #eaf6ee;
    --ve-warning: #9a6700;
    --ve-warning-soft: #fff7df;
    --ve-danger: #b42318;
    --ve-danger-soft: #fff0ef;
    --ve-neutral-soft: #eef2f6;
    --ve-shadow: 0 1px 2px rgba(15, 23, 42, .05), 0 5px 18px rgba(15, 23, 42, .05);
    --ve-radius: 10px;
}

.ve-page {
    min-height: calc(100vh - 80px);
    padding: 20px;
    background: var(--ve-bg);
    color: var(--ve-text);
}

.ve-page * {
    box-sizing: border-box;
}

.ve-page-container {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
}

.ve-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    margin-bottom: 16px;
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: var(--ve-radius);
    box-shadow: var(--ve-shadow);
}

.ve-page-heading {
    min-width: 260px;
}

.ve-eyebrow {
    margin-bottom: 4px;
    color: var(--ve-primary);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ve-page-title,
.ve-section-title,
.ve-card-title {
    color: var(--ve-heading);
    font-weight: 650;
}

.ve-page-title {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.2;
}

.ve-page-subtitle {
    max-width: 760px;
    margin: 7px 0 0;
    color: var(--ve-muted);
    font-size: .92rem;
    line-height: 1.45;
}

.ve-header-actions,
.ve-toolbar-actions,
.ve-inline-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.ve-org-control {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 5px 10px;
    background: var(--ve-surface-soft);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
}

.ve-org-control > label {
    margin: 0;
    color: var(--ve-muted);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.ve-btn,
.ve-page button.ve-btn,
.ve-page a.ve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid var(--ve-border-strong);
    border-radius: 7px;
    background: var(--ve-surface);
    color: var(--ve-text);
    font-size: .86rem;
    font-weight: 600;
    line-height: 1.15;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.ve-btn:hover,
.ve-page button.ve-btn:hover,
.ve-page a.ve-btn:hover {
    background: var(--ve-surface-soft);
    border-color: #aebccb;
    color: var(--ve-heading);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
}

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

.ve-btn-primary,
.ve-page button.ve-btn-primary {
    border-color: var(--ve-primary);
    background: var(--ve-primary);
    color: #fff;
}

.ve-btn-primary:hover,
.ve-page button.ve-btn-primary:hover {
    border-color: var(--ve-primary-dark);
    background: var(--ve-primary-dark);
    color: #fff;
}

.ve-btn-danger,
.ve-page button.ve-btn-danger {
    border-color: #efc4c0;
    background: #fff;
    color: var(--ve-danger);
}

.ve-btn-danger:hover,
.ve-page button.ve-btn-danger:hover {
    border-color: #e6aaa5;
    background: var(--ve-danger-soft);
    color: #912018;
}

.ve-btn-compact,
.ve-page button.ve-btn-compact {
    min-height: 30px;
    padding: 4px 9px;
    font-size: .78rem;
}

.ve-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
}

.ve-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: var(--ve-radius);
    box-shadow: var(--ve-shadow);
}

.ve-toolbar-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}


.ve-checkbox-option {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 7px 10px;
    margin: 0;
    border: 1px solid var(--ve-border);
    border-radius: 7px;
    background: #fbfcfe;
    color: var(--ve-text);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}

.ve-checkbox-option input {
    width: 15px;
    height: 15px;
    margin: 0;
    cursor: pointer;
}

.ve-model-toolbar-compact {
    justify-content: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
}

.ve-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    min-width: min(390px, 100%);
}

.ve-search-icon {
    position: absolute;
    left: 11px;
    z-index: 1;
    color: #8492a6;
    pointer-events: none;
}

.ve-search,
.ve-page input.ve-search,
.ve-page .ve-field,
.ve-page input.form-control.ve-field,
.ve-page select.ve-field,
.ve-page .ve-field select,
.ve-page .ve-field input {
    width: 100%;
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid var(--ve-border-strong);
    border-radius: 7px;
    background: #fff;
    color: var(--ve-text);
    font-size: .86rem;
    box-shadow: none;
}

.ve-search,
.ve-page input.ve-search {
    padding-left: 34px;
}

.ve-search:focus,
.ve-page .ve-field:focus,
.ve-page input:focus,
.ve-page select:focus,
.ve-page textarea:focus {
    outline: none;
    border-color: #7aa9d2;
    box-shadow: 0 0 0 3px rgba(31, 95, 153, .11);
}

.ve-filter-select {
    min-width: 150px;
    min-height: 36px;
    padding: 6px 30px 6px 10px;
    border: 1px solid var(--ve-border-strong);
    border-radius: 7px;
    background-color: #fff;
    color: var(--ve-text);
    font-size: .84rem;
}

.ve-result-count {
    color: var(--ve-muted);
    font-size: .82rem;
    white-space: nowrap;
}

.ve-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.ve-summary-card {
    min-width: 0;
    padding: 14px 16px;
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: var(--ve-radius);
    box-shadow: var(--ve-shadow);
}

.ve-summary-label {
    color: var(--ve-muted);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.ve-summary-value {
    margin-top: 5px;
    color: var(--ve-heading);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.1;
}

.ve-summary-detail {
    margin-top: 4px;
    color: var(--ve-muted);
    font-size: .78rem;
}

.ve-panel {
    margin-bottom: 16px;
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: var(--ve-radius);
    box-shadow: var(--ve-shadow);
    overflow: hidden;
}

.ve-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 54px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--ve-border);
    background: var(--ve-surface);
}

.ve-panel-heading {
    min-width: 220px;
}

.ve-section-title {
    margin: 0;
    font-size: 1rem;
}

.ve-section-description {
    margin: 3px 0 0;
    color: var(--ve-muted);
    font-size: .8rem;
}

.ve-panel-body {
    padding: 16px;
}

.ve-panel-body-flush {
    padding: 0;
}

.ve-table-shell {
    width: 100%;
    overflow: auto;
    background: #fff;
}

.ve-table-shell.ve-table-tall {
    max-height: calc(100vh - 300px);
    min-height: 360px;
}

.ve-page table.ve-table,
.ve-page .ve-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    color: var(--ve-text);
    font-size: .84rem;
}

.ve-page .ve-table th,
.ve-page .ve-table td {
    height: auto;
    padding: 9px 11px;
    border: 0 !important;
    border-bottom: 1px solid #e6ebf1 !important;
    border-right: 0 !important;
    vertical-align: middle;
    background: transparent;
}

.ve-page .ve-table th:first-child,
.ve-page .ve-table td:first-child,
.ve-page .ve-table th:last-child,
.ve-page .ve-table td:last-child {
    border-left: 0 !important;
    border-right: 0 !important;
}

.ve-page .ve-table thead th {
    position: sticky;
    top: 0;
    z-index: 3;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #f7f9fc !important;
    color: #516071;
    border-top: 0 !important;
    border-bottom: 1px solid var(--ve-border-strong) !important;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .035em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: none !important;
}

.ve-page .ve-table tbody tr,
.ve-page .ve-table tbody tr:nth-child(odd),
.ve-page .ve-table tbody tr:nth-child(even),
.ve-page .ve-table tbody tr:only-child {
    background: #fff !important;
}

.ve-page .ve-table tbody tr:hover {
    background: #f7fbff !important;
}

.ve-page .ve-table tbody tr:last-child td {
    border-bottom: 0 !important;
}

.ve-page .ve-clickable-row {
    cursor: pointer;
}

.ve-page .ve-clickable-row:hover td:first-child {
    box-shadow: inset 3px 0 0 var(--ve-primary);
}

.ve-row-primary {
    color: var(--ve-heading);
    font-weight: 650;
}

.ve-row-secondary {
    display: block;
    margin-top: 2px;
    color: var(--ve-muted);
    font-size: .76rem;
}

.ve-row-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ve-primary);
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
}

.ve-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--ve-neutral-soft);
    color: #4c5a69;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .015em;
    white-space: nowrap;
}

.ve-status-success {
    background: var(--ve-success-soft);
    color: var(--ve-success);
}

.ve-status-warning {
    background: var(--ve-warning-soft);
    color: var(--ve-warning);
}

.ve-status-danger {
    background: var(--ve-danger-soft);
    color: var(--ve-danger);
}

.ve-status-primary {
    background: var(--ve-primary-soft);
    color: var(--ve-primary-dark);
}

.ve-progress {
    width: 120px;
    height: 6px;
    overflow: hidden;
    margin-top: 5px;
    background: #e9eef4;
    border-radius: 999px;
}

.ve-progress-bar {
    height: 100%;
    background: var(--ve-primary);
    border-radius: inherit;
}

.ve-progress-label {
    min-width: 70px;
    color: var(--ve-muted);
    font-size: .75rem;
}

.ve-empty {
    padding: 44px 20px;
    color: var(--ve-muted);
    text-align: center;
}

.ve-empty-icon {
    display: block;
    margin-bottom: 10px;
    color: #9aa8b7;
    font-size: 1.5rem;
}

.ve-empty-title {
    margin-bottom: 4px;
    color: var(--ve-heading);
    font-size: .95rem;
    font-weight: 650;
}

.ve-empty-text {
    margin: 0;
    font-size: .82rem;
}

.ve-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ve-dashboard-card {
    display: flex;
    flex-direction: column;
    min-height: 390px;
    background: var(--ve-surface);
    border: 1px solid var(--ve-border);
    border-radius: var(--ve-radius);
    box-shadow: var(--ve-shadow);
    overflow: hidden;
}

.ve-dashboard-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--ve-border);
}

.ve-dashboard-card-header h2 {
    margin: 0;
    color: var(--ve-heading);
    font-size: 1rem;
    font-weight: 650;
}

.ve-dashboard-card-header p {
    margin: 4px 0 0;
    color: var(--ve-muted);
    font-size: .8rem;
}

.ve-dashboard-card-body {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.ve-dashboard-card-footer {
    padding: 10px 14px;
    border-top: 1px solid var(--ve-border);
    background: #fbfcfe;
}

.ve-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ve-info-card {
    padding: 14px 16px;
    background: var(--ve-surface-soft);
    border: 1px solid var(--ve-border);
    border-radius: 8px;
}

.ve-info-label {
    margin-bottom: 4px;
    color: var(--ve-muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.ve-info-value {
    color: var(--ve-heading);
    font-size: .9rem;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.ve-info-value-muted {
    color: var(--ve-muted);
    font-weight: 500;
}

.ve-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ve-form-group label {
    display: block;
    margin-bottom: 5px;
    color: #526274;
    font-size: .76rem;
    font-weight: 650;
}

.ve-form-group-wide {
    grid-column: span 2;
}

.ve-help-callout {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 13px;
    margin-bottom: 14px;
    background: #f0f6fb;
    border: 1px solid #d3e3f1;
    border-radius: 8px;
    color: #39566e;
    font-size: .8rem;
    line-height: 1.45;
}

.ve-help-callout .oi {
    margin-top: 2px;
}

.ve-tabs.nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 5px;
    border: 1px solid var(--ve-border) !important;
    border-radius: 9px;
    background: #edf2f7;
}

.ve-tabs.nav-tabs .nav-item {
    margin: 0;
}

.ve-tabs.nav-tabs .nav-link {
    padding: 7px 11px;
    border: 0 !important;
    border-radius: 6px;
    background: transparent;
    color: #536477;
    font-size: .79rem;
    font-weight: 650;
}

.ve-tabs.nav-tabs .nav-link:hover {
    background: rgba(255,255,255,.65);
}

.ve-tabs.nav-tabs .nav-link.active {
    background: #fff !important;
    color: var(--ve-primary-dark) !important;
    box-shadow: 0 1px 3px rgba(15,23,42,.12);
}

.ve-tab-content {
    padding-top: 14px;
}

.ve-model-workspace {
    background: #fff;
    border: 1px solid var(--ve-border);
    border-radius: var(--ve-radius);
    box-shadow: var(--ve-shadow);
    overflow: hidden;
}

.ve-model-toolbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--ve-border);
    background: #fbfcfe;
}

.ve-model-toolbar .form-control,
.ve-model-toolbar .form-select,
.ve-model-toolbar select,
.ve-model-toolbar input {
    min-height: 34px;
    border-color: var(--ve-border-strong);
    border-radius: 6px;
    font-size: .82rem;
}

.ve-model-table-shell {
    max-height: calc(100vh - 335px);
    min-height: 440px;
    overflow: auto;
}

.ve-page table.custom-table,
.ve-page table.Div-Column-Content,
.ve-page .Scrollable-Div table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    font-size: .82rem;
}

.ve-page table.custom-table th,
.ve-page table.custom-table td,
.ve-page table.Div-Column-Content th,
.ve-page table.Div-Column-Content td,
.ve-page .Scrollable-Div table th,
.ve-page .Scrollable-Div table td {
    padding: 0px 9px;
    border: 0 !important;
    border-bottom: 1px solid #e3e9ef !important;
    vertical-align: middle;
}

.ve-page table.custom-table td p{
    display: inline;
}

.ve-page table.custom-table thead th,
.ve-page table.Div-Column-Content thead th,
.ve-page .Scrollable-Div table thead th {
    position: sticky;
    top: 0;
    z-index: 3;
    background: #f7f9fc !important;
    color: #536477;
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.ve-page table.custom-table tbody tr:nth-child(odd),
.ve-page table.custom-table tbody tr:nth-child(even),
.ve-page table.Div-Column-Content tbody tr:nth-child(odd),
.ve-page table.Div-Column-Content tbody tr:nth-child(even),
.ve-page .Scrollable-Div table tbody tr:nth-child(odd),
.ve-page .Scrollable-Div table tbody tr:nth-child(even) {
    background: #fff !important;
}

.ve-page table.custom-table tbody tr:hover,
.ve-page table.Div-Column-Content tbody tr:hover,
.ve-page .Scrollable-Div table tbody tr:hover {
    background: #f8fbff !important;
}

.ve-page .Scrollable-Div {
    width: 100%;
    max-height: calc(100vh - 295px) !important;
    min-height: 420px !important;
    height: auto !important;
    overflow: auto;
    border: 1px solid var(--ve-border) !important;
    border-radius: 8px;
    background: #fff;
}

.ve-page .Scrollable-Div input,
.ve-page .Scrollable-Div select,
.ve-page .custom-table input,
.ve-page .custom-table select {
    min-height: 30px;
    padding: 4px 6px;
    border: 1px solid #c9d4df;
    border-radius: 5px;
    background: #fff;
    font-size: .8rem;
}

.ve-mapping-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--ve-muted);
    font-size: .76rem;
}

.ve-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ve-legend-swatch {
    width: 11px;
    height: 11px;
    border: 1px solid #bbc7d3;
    border-radius: 3px;
}

.ve-legend-inactive { background: #fff4c7; }
.ve-legend-override { background: #e3f2fd; }
.ve-legend-invalid { background: #fff0ef; border-color: #d96a62; }

.ve-badge-default {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #eee8fb;
    color: #6b49a5;
    font-size: .7rem;
    font-weight: 700;
}

.ve-split-layout {
    display: grid;
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
    gap: 14px;
}

.ve-side-panel {
    align-self: start;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--ve-border);
    border-radius: var(--ve-radius);
    box-shadow: var(--ve-shadow);
}

.ve-side-panel-title {
    margin: 0 0 10px;
    color: var(--ve-heading);
    font-size: .92rem;
    font-weight: 650;
}

.ve-kbd-hint {
    padding: 2px 6px;
    border: 1px solid #ced8e2;
    border-bottom-width: 2px;
    border-radius: 4px;
    background: #fff;
    color: #536477;
    font-size: .7rem;
    font-family: inherit;
}

@media (max-width: 1100px) {
    .ve-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ve-info-grid, .ve-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ve-dashboard-grid { grid-template-columns: 1fr; }
    .ve-split-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .ve-page { padding: 10px; }
    .ve-page-header { padding: 16px; flex-direction: column; }
    .ve-header-actions { width: 100%; justify-content: flex-start; }
    .ve-org-control { width: 100%; flex-wrap: wrap; }
    .ve-toolbar { align-items: stretch; }
    .ve-toolbar-group, .ve-toolbar-actions { width: 100%; justify-content: flex-start; }
    .ve-search-wrap { min-width: 100%; }
    .ve-summary-grid, .ve-info-grid, .ve-form-grid { grid-template-columns: 1fr; }
    .ve-form-group-wide { grid-column: auto; }
    .ve-dashboard-card { min-height: 330px; }
    .ve-page-title { font-size: 1.3rem; }
}

.ve-page .tablewrap {
    height: auto !important;
    min-height: 360px;
    max-height: calc(100vh - 360px);
    overflow: auto;
    border: 1px solid var(--ve-border) !important;
    border-radius: 7px;
    background: #fff;
}

.ve-page .tab-content.ve-tab-content {
    padding: 14px !important;
    border: 0 !important;
}

.ve-page .tab-pane > div:first-child > .ve-btn,
.ve-page .tab-pane > .ve-btn {
    margin-bottom: 8px;
}

.ve-page .ve-cell-editor {
    width: 100%;
    min-width: 105px;
}

.ve-expander-cell {
    width: 38px;
    min-width: 38px;
    padding: 5px !important;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.ve-expander-cell:hover .ve-expander {
    background: var(--ve-primary-soft);
    color: var(--ve-primary-dark);
}

.ve-expander {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border: 1px solid #cfdae5;
    border-radius: 5px;
    background: #fff;
    color: #52677b;
    font-size: .9rem;
    font-weight: 700;
    transition: background .12s ease, color .12s ease, border-color .12s ease;
}

.ve-hierarchy-group-row td {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    background: #f1f5f9 !important;
    color: #526477;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.ve-page .custom-table tbody tr.ve-detail-row,
.ve-page .custom-table tbody tr.ve-detail-row:nth-child(odd),
.ve-page .custom-table tbody tr.ve-detail-row:nth-child(even) {
    background: #f7f9fc !important;
    color: var(--ve-muted);
    font-size: .76rem;
}


.ve-tooltip-trigger {
    display: inline-block;
    border-bottom: 1px dotted currentColor;
    cursor: help;
    outline: none;
}

.ve-tooltip-trigger:focus-visible {
    border-radius: 3px;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, .25);
}

.ve-global-tooltip {
    position: fixed;
    display: none;
    z-index: 2147483647;
    width: max-content;
    max-width: min(360px, calc(100vw - 16px));
    padding: 7px 9px;
    border-radius: 6px;
    background: #26323f;
    color: #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .24);
    font-size: .76rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
    pointer-events: none;
}
