﻿/* ── CMC Spot Market Widget ─────────────────────────────────────────────── */

.cmc-spot { font-family: inherit!important; direction: rtl; }

.cmc-spot-widget-hd { margin-bottom: 16px; }
.cmc-spot-widget-title {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Card base ───────────────────────────────────────────────────────────── */
.cmc-spot-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.cmc-spot-card--full { margin-bottom: 16px; }

/* ── Card header ─────────────────────────────────────────────────────────── */
.cmc-spot-card-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: wrap;
    gap: 8px;
}
.cmc-spot-card-name {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    white-space: nowrap;
}
.cmc-spot-hd-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── Tabs ────────────────────────────────────────────────────────────────── */
.cmc-spot-tabs {
    display: flex;
    gap: 2px;
    background: #f1f5f9;
    border-radius: 6px;
    padding: 2px;
}
.cmc-spot-tab {
    background: transparent!important;
    border: none!important;
    cursor: pointer!important;
    font-size: 11px!important;
    font-weight: 600!important;
    color: #64748b!important;
    padding: 3px 9px!important;
    border-radius: 4px!important;;
    transition: background 0.15s, color 0.15s!important;;
    white-space: nowrap;
    font-family: inherit!important;
}
.cmc-spot-tab:hover { color: #0f172a!important; background: rgba(255,255,255,0.7)!important;; }
.cmc-spot-tab.active { background: #fff!important; color: #0f172a!important; box-shadow: 0 1px 3px rgba(0,0,0,0.08)!important; }
.cmc-spot-tabs--sm .cmc-spot-tab { font-size: 10px; padding: 2px 7px; }

/* ── View toggle (نظرة عامة / التفاصيل) ─────────────────────────────────── */
.cmc-spot-view-toggle {
    display: flex;
    gap: 2px;
    background: #f1f5f9;
    border-radius: 6px;
    padding: 2px;
}
.cmc-spot-view {
    background: transparent!important;
    border: none!important;
    cursor: pointer!important;
    font-size: 11px!important;
    font-weight: 600!important;
    color: #64748b!important;
    padding: 3px 9px!important;
    border-radius: 4px!important;
    transition: background 0.15s, color 0.15s!important;
    white-space: nowrap!important;
    font-family: inherit!important;
}
.cmc-spot-view:hover { color: #0f172a!important; background: rgba(255,255,255,0.7)!important; }
.cmc-spot-view.active { background: #fff!important; color: #0f172a!important; box-shadow: 0 1px 3px rgba(0,0,0,0.08)!important; }

/* ── Mode toggle (إجمالي / حصة السوق) ───────────────────────────────────── */
.cmc-spot-mode-toggle {
    display: flex;
    gap: 2px;
    background: #f1f5f9;
    border-radius: 6px;
    padding: 2px;
}
.cmc-spot-mode {
    background: transparent!important;
    border: none!important;
    cursor: pointer!important;
    font-size: 10px!important;
    font-weight: 600!important;
    color: #64748b!important;
    padding: 2px 8px!important;
    border-radius: 4px!important;
    transition: background 0.15s, color 0.15s!important;
    white-space: nowrap!important;
    font-family: inherit!important;
}
.cmc-spot-mode:hover { color: #0f172a!important; background: rgba(255,255,255,0.7)!important; }
.cmc-spot-mode.active { background: #8B3D47!important; color: #fff!important; box-shadow: 0 1px 3px rgba(0,0,0,0.12)!important; }

/* ── Panel 1 split: chart + sidebar ─────────────────────────────────────── */
.cmc-spot-split {
    display: flex;
    flex-direction: row;
    gap: 0;
}
.cmc-spot-chart-wrap {
    flex: 1;
    min-height: 240px;
    padding: 12px;
    position: relative;
}
.cmc-spot-chart-wrap canvas { width: 100% !important; height: 100% !important; }
.cmc-spot-chart-wrap--tall { min-height: 340px; }

.cmc-spot-sidebar {
    width: 240px;
    flex-shrink: 0;
    border-left: 1px solid #f1f5f9;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fafbfc;
    order: -1;
}
.cmc-spot-sb-title {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}
.cmc-spot-sb-big {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}
.cmc-spot-sb-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 2px;
}
.cmc-spot-sb-badge.up { background: #f0fdf4; color: #16a34a; }
.cmc-spot-sb-badge.dn { background: #fef2f2; color: #dc2626; }

.cmc-spot-sb-section {
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid #e2e8f0;
}
.cmc-spot-sb-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 10px;
    padding: 2px 0;
}
.cmc-spot-sb-row-lbl { color: #64748b; flex: 1; white-space: nowrap; }
.cmc-spot-sb-row-val { font-weight: 700; color: #0f172a; white-space: nowrap; text-align: left; }
.cmc-spot-sb-row-val.up { color: #16a34a; }
.cmc-spot-sb-row-val.dn { color: #dc2626; }
.cmc-spot-sb-row-val small { font-weight: 500; color: #94a3b8; font-size: 9px; }

/* ── Bottom 2x2 grid ─────────────────────────────────────────────────────── */
.cmc-spot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    align-items: start;
}
.cmc-spot-cex {
    grid-row: span 2;
    grid-column: 1;
}
.cmc-spot-svol { grid-row: 1; grid-column: 2; }
.cmc-spot-dex  { grid-row: 2; grid-column: 2; }

/* ── Legend ──────────────────────────────────────────────────────────────── */
.cmc-spot-legend {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    color: #64748b;
    flex-wrap: wrap;
    padding: 6px 14px;
    border-bottom: 1px solid #f1f5f9;
}
.cmc-spot-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
}

/* ── Card footer ─────────────────────────────────────────────────────────── */
.cmc-spot-card-ft {
    padding: 6px 14px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}
.cmc-spot-watermark { font-size: 9px; color: #cbd5e1; font-weight: 500; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .cmc-spot-split { flex-direction: column; }
    .cmc-spot-sidebar { width: 100%; border-left: none; border-top: 1px solid #f1f5f9; flex-direction: row; flex-wrap: wrap; gap: 16px; }
    .cmc-spot-grid { grid-template-columns: 1fr; }
    .cmc-spot-cex { grid-row: auto; }
}
@media (max-width: 600px) {
    .cmc-spot-card-hd { flex-direction: column; align-items: flex-start; }
    .cmc-spot-tab { font-size: 9px; padding: 2px 5px; }
}
