/* ============================================
   CALL.CSS - Styles Mode Call Trading (V43)
   Utilise les mêmes variables que base.css
   ============================================ */

/* ----------------
   CAPITAL BAR
   ---------------- */
.call-capital-bar {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 14px;
}

.call-capital-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.call-capital-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-capital-amount {
    font-size: 26px;
    font-weight: 700;
    color: var(--success-color);
    font-variant-numeric: tabular-nums;
}

.call-currency {
    font-size: 15px;
    opacity: 0.7;
}

.call-capital-roi {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 8px;
    display: inline-block;
}

.call-capital-roi.positive {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
}

.call-capital-roi.negative {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error-color);
}

.call-capital-month {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.call-capital-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.call-capital-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), #34d399);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.call-capital-details {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary);
}

/* ----------------
   STREAK BAR
   ---------------- */
.call-streak-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 14px;
}

.call-streak-fires {
    font-size: 16px;
}

.call-streak-info {
    flex: 1;
}

.call-streak-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
}

.call-streak-count {
    font-size: 11px;
    color: var(--text-secondary);
}

.call-streak-bonus-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(247, 147, 26, 0.15);
    color: var(--secondary-color);
}

/* ----------------
   TIMEFRAME SELECT
   Même style que .crypto-toggle
   ---------------- */
.call-timeframe-select {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 3px;
    margin-bottom: 14px;
    gap: 3px;
}

.call-tf-btn {
    flex: 1;
    padding: 10px 6px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.call-tf-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.call-tf-btn.active {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.call-tf-btn.active[data-tf="3"] { color: #ef4444; }
.call-tf-btn.active[data-tf="6"] { color: var(--secondary-color); }
.call-tf-btn.active[data-tf="12"] { color: #eab308; }
.call-tf-btn.active[data-tf="24"] { color: var(--success-color); }

.call-tf-mult {
    font-size: 10px;
    opacity: 0.6;
    font-weight: 400;
}

.call-tf-btn.active .call-tf-mult {
    opacity: 0.8;
}

/* ----------------
   MISE / AMOUNT
   ---------------- */
.call-amount-section {
    margin-bottom: 14px;
}

.call-amount-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.call-amount-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-amount-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--success-color);
}

.call-amount-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    margin-bottom: 8px;
}

.call-amount-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--success-color);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.call-amount-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--success-color);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.call-amount-presets {
    display: flex;
    gap: 6px;
}

.call-amount-preset {
    flex: 1;
    padding: 6px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: var(--text-secondary);
    font-size: 11px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.call-amount-preset:hover {
    border-color: var(--success-color);
    color: var(--success-color);
}

/* ----------------
   GAIN PREVIEW
   ---------------- */
.call-gain-preview {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.call-gain-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-gain-mult {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.call-gain-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--success-color);
}

/* ----------------
   PARIS ACTIFS
   ---------------- */
.call-active-bets-section {
    margin-top: 14px;
}

.call-active-bets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.call-active-bets-count {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

.call-bet-card {
    background: var(--background-card);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 8px;
    border-left: 3px solid var(--gray-light);
    transition: all 0.2s;
}

.call-bet-card.btc { border-left-color: #f7931a; }
.call-bet-card.eth { border-left-color: #627eea; }
.call-bet-card:hover { background: rgba(255, 255, 255, 0.03); }

.call-bet-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.call-bet-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-bet-crypto {
    font-weight: 600;
    font-size: 14px;
}

.call-bet-dir {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.call-bet-dir.up { background: rgba(16, 185, 129, 0.2); color: var(--success-color); }
.call-bet-dir.down { background: rgba(239, 68, 68, 0.2); color: var(--error-color); }

.call-bet-tf {
    font-size: 11px;
    color: var(--text-secondary);
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.call-bet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.call-bet-cell {
    text-align: center;
}

.call-bet-cell-label {
    font-size: 9px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.call-bet-cell-value {
    font-size: 14px;
    font-weight: 600;
}

.call-bet-cell-value.green { color: var(--success-color); }
.call-bet-cell-value.cyan { color: var(--primary-color); }

/* ----------------
   MODE TOGGLE
   Même style que .crypto-toggle
   ---------------- */
.mode-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 3px;
    margin-bottom: 16px;
    gap: 3px;
}

.mode-toggle-btn {
    flex: 1;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mode-toggle-btn:hover { color: rgba(255, 255, 255, 0.8); }

.mode-toggle-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
}

.mode-toggle-btn.active[data-mode="classic"] {
    color: var(--primary-color);
}

.mode-toggle-btn.active[data-mode="call"] {
    color: var(--success-color);
}

.call-active-dot {
    width: 6px;
    height: 6px;
    background: var(--success-color);
    border-radius: 50%;
    animation: callDotPulse 2s infinite;
}

@keyframes callDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ----------------
   HEADER BADGE CALL
   Même style que .points-badge mais vert
   ---------------- */
.call-balance-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 480px) {
    .call-balance-badge {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* ----------------
   ACTIVATION CARD
   ---------------- */
.call-activation-card {
    text-align: center;
    padding: 32px 20px;
}

.call-activation-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.call-activation-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--success-color);
}

.call-activation-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.call-activation-desc strong {
    color: var(--success-color);
}

.call-activate-btn {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.call-activate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.call-activation-locked {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

/* ----------------
   BAIL OUT
   ---------------- */
.call-bailout-section {
    text-align: center;
    padding: 16px;
    margin-top: 14px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.12);
    border-radius: 12px;
}

.call-bailout-text {
    font-size: 14px;
    color: var(--error-color);
    margin-bottom: 10px;
}

.call-bailout-btn {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error-color);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.call-bailout-btn:hover {
    background: rgba(239, 68, 68, 0.25);
}

/* ----------------
   ANIMATIONS
   ---------------- */
#callModeContent {
    animation: callFadeIn 0.3s ease;
}

@keyframes callFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ----------------
   MINI-CARD CALL STATS (onglet Stats)
   ---------------- */
.profile-section.border-green {
    border-left-color: var(--success-color);
}

/* ----------------
   CALL LEADERBOARD ITEMS
   ---------------- */
.call-leaderboard-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    background: var(--background-card);
    margin-bottom: 6px;
    transition: background 0.2s;
}

.call-leaderboard-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.call-leaderboard-item.current-user {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.call-lb-rank {
    width: 36px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.call-lb-info {
    flex: 1;
    min-width: 0;
}

.call-lb-name {
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.call-lb-stats {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.call-lb-balance {
    font-size: 15px;
    font-weight: 700;
    color: var(--success-color);
    flex-shrink: 0;
    text-align: right;
}

.call-lb-roi {
    font-size: 10px;
    text-align: right;
}

.call-lb-roi.positive { color: var(--success-color); }
.call-lb-roi.negative { color: var(--error-color); }

/* ----------------
   GLOBAL MODE PILL (top bar)
   ---------------- */
.global-mode-pill {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2px;
    gap: 2px;
    flex-shrink: 0;
}

.pill-btn {
    padding: 6px 12px;
    border-radius: 18px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.pill-btn:hover {
    color: rgba(255, 255, 255, 0.7);
}

.pill-btn.active[data-mode="classic"] {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.pill-btn.active[data-mode="call"] {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-color);
}

/* ----------------
   CALL HISTORY HEADER (stats en haut de l'historique)
   ---------------- */
.call-history-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.call-history-stat {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.call-history-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.call-history-stat-value {
    font-size: 16px;
    font-weight: 700;
}

.call-history-stat-value.positive { color: var(--success-color); }
.call-history-stat-value.negative { color: var(--error-color); }

/* ----------------
   CALL STATS SUMMARY (onglet Stats)
   ---------------- */
.call-stats-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.call-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
}

.call-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.call-stat-value.positive { color: var(--success-color); }
.call-stat-value.negative { color: var(--error-color); }

.call-stat-label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ============================================
   V3 TRADING TERMINAL ADDITIONS
   ============================================ */

/* ----------------
   CAPITAL BAR V3 (compact horizontal)
   ---------------- */
.call-capital-bar-v3 {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.call-capital-left {}
.call-capital-label-v3 {
    font-size: 9px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: monospace;
}
.call-capital-amount-v3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--success-color);
    font-family: monospace;
    font-variant-numeric: tabular-nums;
}
.call-currency-v3 {
    font-size: 13px;
    opacity: 0.6;
}

.call-capital-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.call-capital-tags {
    display: flex;
    gap: 6px;
    align-items: center;
}
.call-mult-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    font-family: monospace;
    border: 1px solid;
    transition: all 0.3s ease;
}
.call-roi-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 6px;
}
.call-roi-tag.positive {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success-color);
}
.call-roi-tag.negative {
    background: rgba(239, 68, 68, 0.12);
    color: var(--error-color);
}
.call-capital-month-v3 {
    font-size: 10px;
    color: var(--text-secondary);
}

/* ----------------
   PRICE TICKER TAPE
   ---------------- */
.call-ticker-tape {
    overflow: hidden;
    height: 26px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.call-ticker-track {
    display: flex;
    gap: 24px;
    animation: callTickerMove 25s linear infinite;
    white-space: nowrap;
    padding-left: 12px;
}
@keyframes callTickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.call-ticker-item {
    font-size: 10px;
    font-family: monospace;
    display: inline-flex;
    gap: 4px;
    align-items: center;
}
.call-ticker-symbol {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}
.call-ticker-price {
    color: rgba(255, 255, 255, 0.5);
}
.call-ticker-change {
    font-weight: 600;
}
.call-ticker-change.pos { color: var(--success-color); }
.call-ticker-change.neg { color: var(--error-color); }

/* ----------------
   MINI CHART
   ---------------- */
.call-chart-wrapper {
    position: relative;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.call-chart-header {
    position: absolute;
    top: 8px;
    left: 10px;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.call-chart-pair {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
}
.call-chart-tf {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.2);
    font-family: monospace;
}
.call-mini-chart {
    width: 100%;
    background: rgba(17, 24, 39, 0.4);
    position: relative;
}
.call-chart-price-overlay {
    position: absolute;
    right: 0;
    top: 35%;
    z-index: 2;
    display: flex;
    align-items: center;
}
.call-chart-price-overlay::before {
    content: '';
    width: 50px;
    height: 1px;
    opacity: 0.6;
    background: inherit;
}
.call-chart-price-tag {
    padding: 2px 6px;
    border-radius: 3px 0 0 3px;
    font-size: 9px;
    font-weight: 600;
    color: #fff;
    font-family: monospace;
}

/* ----------------
   FORMULAIRE V3
   ---------------- */
.call-form-v3 {
    background: var(--background-card);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.call-form-section {
    margin-bottom: 12px;
}
.call-form-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: monospace;
    margin-bottom: 6px;
}
.call-form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

/* MAX button special style */
.call-amount-max {
    font-weight: 700 !important;
    background: rgba(16, 185, 129, 0.1) !important;
    color: var(--success-color) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
}

/* ----------------
   GAIN PREVIEW V3
   ---------------- */
.call-gain-preview-v3 {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.call-gain-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.2);
    font-family: monospace;
    margin-top: 1px;
}
.call-gain-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--success-color);
    font-family: monospace;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .call-gain-amount {
        font-size: 17px;
    }
}

/* ----------------
   BOUTONS 1-CLIC HAUSSE / BAISSE
   ---------------- */
.call-oneclick-buttons {
    display: flex;
    gap: 8px;
}
.call-btn-hausse,
.call-btn-baisse {
    flex: 1;
    padding: 14px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    transition: all 0.2s ease;
}
.call-btn-hausse {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.25);
}
.call-btn-hausse:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}
.call-btn-baisse {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.25);
}
.call-btn-baisse:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

/* Feedback après placement */
.call-placed-feedback {
    width: 100%;
    padding: 14px 0;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    animation: callSuccessPop 0.3s ease;
}
.call-placed-feedback.up {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success-color);
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.call-placed-feedback.down {
    background: rgba(239, 68, 68, 0.12);
    color: var(--error-color);
    border: 1px solid rgba(239, 68, 68, 0.25);
}
@keyframes callSuccessPop {
    0% { transform: scale(0.95); opacity: 0; }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); opacity: 1; }
}

/* ----------------
   POSITIONS COMPACTES (style terminal)
   ---------------- */
.call-positions-section {
    margin-top: 16px;
}
.call-positions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.call-positions-title {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
}
.call-positions-count {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.12);
    color: var(--primary-color);
    font-weight: 600;
}
.call-position-card {
    background: var(--background-card);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 6px;
    border-left: 3px solid #666;
    display: flex;
    align-items: center;
    gap: 10px;
}
.call-position-left {
    min-width: 70px;
}
.call-position-crypto-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 2px;
}
.call-position-symbol {
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    font-family: monospace;
}
.call-position-dir {
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
}
.call-position-dir.up {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
}
.call-position-dir.down {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error-color);
}
.call-position-prices {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
}
.call-position-center {
    flex: 1;
    text-align: center;
}
.call-position-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1px;
}
.call-position-gain {
    font-size: 14px;
    font-weight: 700;
    color: var(--success-color);
    font-family: monospace;
}
.call-position-right {
    text-align: right;
    min-width: 70px;
}
.call-position-timer {
    font-size: 11px;
    font-family: monospace;
    color: rgba(0, 212, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin-bottom: 2px;
}
.call-position-tf {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
}

/* Streak tag dans capital bar */
.call-streak-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
    font-family: monospace;
    border: 1px solid rgba(249, 115, 22, 0.25);
}

.call-streak-row {
    font-size: 11px;
    font-weight: 700;
    color: #f97316;
    font-family: monospace;
    text-align: right;
    margin-top: 2px;
}

.call-btn-amount {
    font-size: 13px;
    opacity: 0.9;
}
