/* dashboards.css - Dashboard grid layouts and panel styling for Command Center modes */

/* ===== DASHBOARD GRID SYSTEM ===== */

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 16px;
    padding: 0;
}

/* ===== DASHBOARD HEADER ===== */

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.1));
}

.dashboard-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary, #fff);
    letter-spacing: 0.5px;
    margin: 0;
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-refresh-time {
    font-size: 11px;
    color: var(--text-tertiary, rgba(255, 255, 255, 0.4));
}

.dashboard-refresh-btn {
    padding: 6px 14px;
    background: var(--bg-secondary, rgba(255, 255, 255, 0.06));
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.dashboard-refresh-btn:hover {
    background: var(--bg-tertiary, rgba(255, 255, 255, 0.1));
    border-color: var(--accent-cta, #00AFD2);
    color: var(--accent-cta, #00AFD2);
}

/* ===== DASHBOARD PANEL (individual card) ===== */

.dashboard-panel {
    background: linear-gradient(135deg, rgba(15, 25, 50, 0.95) 0%, rgba(10, 18, 40, 0.98) 100%);
    border: 1px solid rgba(0, 180, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-panel:hover {
    border-color: rgba(0, 180, 255, 0.35);
    box-shadow: 0 4px 20px rgba(0, 180, 255, 0.08);
}

.dashboard-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.dashboard-panel-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #fff);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.dashboard-panel-badge {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-panel-badge.live {
    background: rgba(52, 199, 89, 0.15);
    color: #34C759;
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.dashboard-panel-badge.cached {
    background: rgba(255, 149, 0, 0.15);
    color: #FF9500;
    border: 1px solid rgba(255, 149, 0, 0.3);
}

.dashboard-panel-badge.mock {
    background: rgba(255, 59, 48, 0.15);
    color: #FF3B30;
    border: 1px solid rgba(255, 59, 48, 0.3);
    animation: mock-pulse 2s ease-in-out infinite;
}

@keyframes mock-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Mock data overlay warning on panel */
.dashboard-mock-warning {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 9px;
    padding: 2px 6px;
    background: rgba(255, 59, 48, 0.9);
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
    text-transform: uppercase;
}

/* Chart container inside a panel */
.dashboard-chart-container {
    width: 100%;
    min-height: 200px;
    position: relative;
}

/* Loading skeleton for panels */
.dashboard-panel-loading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-skeleton {
    background: linear-gradient(90deg, var(--bg-secondary, rgba(255,255,255,0.05)) 25%, var(--bg-tertiary, rgba(255,255,255,0.08)) 50%, var(--bg-secondary, rgba(255,255,255,0.05)) 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease infinite;
    border-radius: 6px;
}

.dashboard-skeleton.skeleton-kpi { height: 48px; width: 100%; }
.dashboard-skeleton.skeleton-chart { height: 200px; width: 100%; }
.dashboard-skeleton.skeleton-text { height: 14px; width: 60%; }

@keyframes skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Error state for failed panel loads */
.dashboard-panel-error {
    padding: 24px;
    text-align: center;
    color: var(--text-tertiary, rgba(255, 255, 255, 0.4));
    font-size: 13px;
}

.dashboard-panel-error-icon {
    font-size: 28px;
    margin-bottom: 8px;
    opacity: 0.5;
}

/* ===== KPI ROW (executive + sales overview stats) ===== */

.dashboard-kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.dashboard-kpi-card {
    background: linear-gradient(135deg, rgba(15, 25, 50, 0.95) 0%, rgba(10, 18, 40, 0.98) 100%);
    border: 1px solid rgba(0, 180, 255, 0.15);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: transform 0.15s ease, border-color 0.15s ease;
    position: relative;
    z-index: 1;
}

.dashboard-kpi-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 180, 255, 0.35);
    z-index: 100;
}

/* ===== KPI RICH TOOLTIP POPOUT ===== */

.kpi-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    min-width: 280px;
    max-width: 360px;
    padding: 16px 18px;
    background: rgba(10, 14, 30, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 175, 210, 0.4);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 175, 210, 0.15);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    text-align: left;
}

.kpi-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: rgba(0, 175, 210, 0.4);
}

.dashboard-kpi-card:hover .kpi-tooltip,
.dashboard-kpi-card.tooltip-active .kpi-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.kpi-tooltip-summary {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 175, 210, 0.2);
}

.kpi-tooltip-heading {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #00AFD2;
    margin-bottom: 3px;
    margin-top: 10px;
}

.kpi-tooltip-heading:first-of-type {
    margin-top: 0;
}

.kpi-tooltip-formula {
    font-size: 12px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    color: #34C759;
    background: rgba(52, 199, 89, 0.08);
    border: 1px solid rgba(52, 199, 89, 0.15);
    border-radius: 5px;
    padding: 6px 8px;
    margin: 4px 0 8px 0;
    line-height: 1.4;
    word-break: break-word;
}

.kpi-tooltip-detail {
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.kpi-tooltip-target {
    font-size: 11px;
    color: #FF9500;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 149, 0, 0.2);
}

.kpi-tooltip-target::before {
    content: '\25CE ';
}

.kpi-tooltip-breakdown {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 175, 210, 0.15);
}

.kpi-tooltip-breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    padding: 2px 0;
    color: rgba(255, 255, 255, 0.75);
}

.kpi-tooltip-breakdown-row .breakdown-val {
    font-weight: 700;
    color: #00AFD2;
    font-family: 'SF Mono', 'Fira Code', monospace;
}

/* KPI info icon */
.kpi-info-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    font-size: 10px;
    text-align: center;
    border-radius: 50%;
    background: rgba(0, 175, 210, 0.15);
    color: #00AFD2;
    margin-left: 5px;
    cursor: help;
    vertical-align: middle;
    transition: background 0.15s ease;
}

.dashboard-kpi-card:hover .kpi-info-icon {
    background: rgba(0, 175, 210, 0.3);
}

/* Flip tooltip below when near top of viewport (applied via JS) */
.dashboard-kpi-card.tooltip-flip .kpi-tooltip {
    bottom: auto;
    top: calc(100% + 12px);
}

.dashboard-kpi-card.tooltip-flip .kpi-tooltip::after {
    top: auto;
    bottom: 100%;
    border-top-color: transparent;
    border-bottom-color: rgba(0, 175, 210, 0.4);
}

/* Light mode overrides for KPI tooltips */
[data-theme="light"] .kpi-tooltip {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(14, 20, 62, 0.15);
    box-shadow: 0 8px 32px rgba(14, 20, 62, 0.18);
}

[data-theme="light"] .kpi-tooltip::after {
    border-top-color: rgba(14, 20, 62, 0.15);
}

[data-theme="light"] .dashboard-kpi-card.tooltip-flip .kpi-tooltip::after {
    border-top-color: transparent;
    border-bottom-color: rgba(14, 20, 62, 0.15);
}

[data-theme="light"] .kpi-tooltip-summary {
    color: #333;
    border-bottom-color: rgba(14, 20, 62, 0.1);
}

[data-theme="light"] .kpi-tooltip-heading {
    color: var(--accent-cta, #00AFD2);
}

[data-theme="light"] .kpi-tooltip-formula {
    color: #1a8a3a;
    background: rgba(52, 199, 89, 0.06);
    border-color: rgba(52, 199, 89, 0.15);
}

[data-theme="light"] .kpi-tooltip-detail {
    color: #555;
}

[data-theme="light"] .kpi-tooltip-target {
    color: #c77600;
    border-top-color: rgba(255, 149, 0, 0.15);
}

[data-theme="light"] .kpi-tooltip-breakdown-row {
    color: #555;
}

[data-theme="light"] .kpi-info-icon {
    background: rgba(0, 175, 210, 0.1);
}

.dashboard-kpi-value {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-cta, #00AFD2);
    line-height: 1.1;
}

.dashboard-kpi-value.kpi-green { color: #34C759; }
.dashboard-kpi-value.kpi-orange { color: #FF9500; }
.dashboard-kpi-value.kpi-red { color: #FF3B30; }
.dashboard-kpi-value.kpi-purple { color: #AF52DE; }

.dashboard-kpi-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary, rgba(255, 255, 255, 0.5));
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 6px;
}

.dashboard-kpi-delta {
    font-size: 11px;
    margin-top: 4px;
    font-weight: 600;
}

.dashboard-kpi-delta.positive { color: #34C759; }
.dashboard-kpi-delta.negative { color: #FF3B30; }
.dashboard-kpi-delta.neutral { color: var(--text-tertiary); }

/* ===== STAT TABLE (for lead lists, alert tables, etc.) ===== */

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.dashboard-table th {
    text-align: left;
    font-size: 10px;
    font-weight: 600;
    color: var(--text-tertiary, rgba(255, 255, 255, 0.5));
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 10px;
    border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.1));
}

.dashboard-table td {
    padding: 8px 10px;
    color: var(--text-primary, #fff);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dashboard-table tr:hover td {
    background: rgba(0, 180, 255, 0.04);
}

/* Score badge for lead scoring */
.score-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.score-badge.high { background: rgba(52, 199, 89, 0.15); color: #34C759; }
.score-badge.medium { background: rgba(255, 149, 0, 0.15); color: #FF9500; }
.score-badge.low { background: rgba(255, 59, 48, 0.15); color: #FF3B30; }

/* ===== ADMIN PANEL SPECIFICS ===== */

.admin-token-meter {
    height: 8px;
    border-radius: 4px;
    background: var(--bg-secondary, rgba(255, 255, 255, 0.06));
    overflow: hidden;
    margin-top: 8px;
}

.admin-token-meter-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
    background: linear-gradient(90deg, #34C759, #FF9500, #FF3B30);
}

/* Infrastructure status indicator */
.infra-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.infra-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.infra-status-dot.healthy { background: #34C759; box-shadow: 0 0 6px rgba(52, 199, 89, 0.4); }
.infra-status-dot.degraded { background: #FF9500; box-shadow: 0 0 6px rgba(255, 149, 0, 0.4); }
.infra-status-dot.down { background: #FF3B30; box-shadow: 0 0 6px rgba(255, 59, 48, 0.4); animation: pulse-dot 1.5s ease infinite; }

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.infra-status-name {
    flex: 1;
    font-size: 13px;
    color: var(--text-primary, #fff);
}

.infra-status-latency {
    font-size: 12px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    font-family: monospace;
}

/* ===== LIGHT MODE OVERRIDES ===== */

[data-theme="light"] .dashboard-panel {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 248, 252, 0.98) 100%);
    border-color: rgba(24, 144, 215, 0.15);
}

[data-theme="light"] .dashboard-panel:hover {
    border-color: rgba(24, 144, 215, 0.3);
    box-shadow: 0 4px 20px rgba(24, 144, 215, 0.08);
}

[data-theme="light"] .dashboard-kpi-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 248, 252, 0.98) 100%);
    border-color: rgba(24, 144, 215, 0.15);
}

[data-theme="light"] .dashboard-header {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .dashboard-title {
    color: #1a1a2e;
}

[data-theme="light"] .dashboard-table th {
    color: rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .dashboard-table td {
    color: #1a1a2e;
    border-bottom-color: rgba(0, 0, 0, 0.04);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .dashboard-kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-kpi-value {
        font-size: 24px;
    }
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .dashboard-kpi-row {
        grid-template-columns: 1fr;
    }
}

/* ===== PREMIUM VISUALIZATION - SPARKLINE GRID ===== */

.sparkline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}

.sparkline-cell {
    padding: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 180, 255, 0.08);
    transition: border-color 0.15s ease;
}

.sparkline-cell:hover {
    border-color: rgba(0, 180, 255, 0.25);
}

.sparkline-label {
    font-size: 10px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.6));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.sparkline-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary, #fff);
    margin-bottom: 4px;
}

.sparkline-chart {
    width: 100%;
    height: 30px;
}

/* ===== PREMIUM VISUALIZATION - WIDE PANELS ===== */

.dashboard-panel--wide {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .dashboard-panel--wide {
        grid-column: span 1;
    }
    .sparkline-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

/* ===== BOOK-STOCK RECONCILIATION ===== */

.recon-module {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recon-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.1));
}

.recon-kpi-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.recon-charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 16px;
}

.recon-panel-wide {
    grid-column: span 1;
}

@media (min-width: 900px) {
    .recon-panel-wide {
        grid-column: span 1;
    }
}

.recon-status-badge {
    display: inline-block;
    font-size: 9px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.recon-close-btn {
    padding: 4px 12px;
    background: var(--bg-secondary, rgba(255, 255, 255, 0.06));
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.recon-close-btn:hover {
    background: rgba(255, 59, 48, 0.15);
    border-color: rgba(255, 59, 48, 0.3);
    color: #FF3B30;
}

/* Variance indicator pulse for critical status */
.variance-indicator-critical {
    animation: variance-pulse 2s ease-in-out infinite;
}

@keyframes variance-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.3); }
    50% { opacity: 0.85; box-shadow: 0 0 12px 4px rgba(255, 59, 48, 0.15); }
}

/* Recon card split layout (book side vs meter side) */
.recon-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(15, 25, 50, 0.95) 0%, rgba(10, 18, 40, 0.98) 100%);
    border: 1px solid rgba(0, 180, 255, 0.15);
    border-radius: 12px;
}

.recon-card-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recon-card-side--book {
    border-right: 1px solid rgba(0, 175, 210, 0.2);
    padding-right: 12px;
}

.recon-card-side-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary, rgba(255, 255, 255, 0.6));
}

@media (max-width: 600px) {
    .recon-charts-grid {
        grid-template-columns: 1fr;
    }
    .recon-kpi-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .recon-card {
        grid-template-columns: 1fr;
    }
    .recon-card-side--book {
        border-right: none;
        border-bottom: 1px solid rgba(0, 175, 210, 0.2);
        padding-right: 0;
        padding-bottom: 12px;
    }
}

/* ===== COMPLIANCE BADGES ===== */

.tg-card-compliance {
    margin-top: 4px;
}

.tg-compliance-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
}

.tg-compliance-ok {
    background: rgba(52, 199, 89, 0.15);
    color: #34C759;
}

.tg-compliance-due-soon {
    background: rgba(255, 149, 0, 0.15);
    color: #FF9500;
}

.tg-compliance-overdue {
    background: rgba(255, 59, 48, 0.15);
    color: #FF3B30;
}

.tg-compliance-escalate {
    background: rgba(255, 59, 48, 0.25);
    color: #FF3B30;
    animation: compliance-pulse 1.5s ease-in-out infinite;
}

@keyframes compliance-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== COMPLIANCE RISK MATRIX ===== */

.tg-risk-matrix {
    display: grid;
    grid-template-columns: 70px 1fr 1fr;
    gap: 4px;
    font-size: 11px;
}

.tg-rm-corner {
    /* empty top-left cell */
}

.tg-rm-header {
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 4px 0;
    font-size: 10px;
}

.tg-rm-label {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 10px;
}

.tg-rm-cell {
    text-align: center;
    padding: 8px 4px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
}

.tg-rm-cell span {
    display: block;
    font-size: 9px;
    font-weight: 500;
    opacity: 0.8;
    margin-top: 2px;
}

.tg-rm-low {
    background: rgba(52, 199, 89, 0.12);
    color: #34C759;
}

.tg-rm-moderate {
    background: rgba(255, 149, 0, 0.12);
    color: #FF9500;
}

.tg-rm-warning {
    background: rgba(255, 149, 0, 0.18);
    color: #FF9500;
}

.tg-rm-critical {
    background: rgba(255, 59, 48, 0.18);
    color: #FF3B30;
}

.tg-rm-compound {
    margin-top: 8px;
    font-size: 10px;
    font-weight: 600;
    color: #FF3B30;
    text-align: center;
    padding: 4px;
    background: rgba(255, 59, 48, 0.08);
    border-radius: 4px;
}

/* ===== FLEET GEO MAP ===== */

#tg-geo-map {
    border-radius: 8px;
    overflow: hidden;
}

#tg-geo-map .modebar {
    display: none !important;
}
