    * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --header-h: 40px;
            --ticker-h: 28px;
            --background: #0a0a0a;
            --foreground: #ededed;
            --panel-bg: #0a0a0a;
            --panel-border: rgba(255, 255, 255, 0.1);
            --muted-text: #a1a1aa;
            --chip-border: rgba(255, 255, 255, 0.15);
            --btn-active-bg: rgba(255, 255, 255, 0.1);
            --btn-active-fg: #e4e4e7;
            --btn-inactive-fg: #d4d4d8;
            --btn-hover-bg: rgba(255, 255, 255, 0.05);
            --brand-accent: #c084fc;
            --header-bg: rgba(0, 0, 0, 0.7);
            --header-border: rgba(255, 255, 255, 0.1);
        }
        
        html, body { height: 100vh; width: 100vw; overflow: hidden; }
        
        body {
            font-family: 'IBM Plex Mono', monospace;
            background: var(--background);
            color: var(--foreground);
            display: flex;
            flex-direction: column;
        }
        
        .ui-sans { font-family: 'Inter', system-ui, sans-serif; }
        .terminal-text { font-family: 'IBM Plex Mono', monospace; font-variant-numeric: tabular-nums; }
        .tabular-nums { font-variant-numeric: tabular-nums; }
        
       @keyframes ticker-scroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-25%); } 
}

.ticker-track { 
    animation: ticker-scroll 60s linear infinite;
    will-change: transform;
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}
        
        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); }
        ::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 4px; }
        
        .chip-btn { transition: background 160ms ease, color 160ms ease; cursor: pointer; }
        .chip-btn:hover { background: var(--btn-hover-bg) !important; }
        
        .logo-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 6px;
        }
        .logo-chip-sm { width: 18px; height: 18px; }
        
        .pnl-positive { color: #16a34a; }
        .pnl-negative { color: #ef4444; }
        
        .model-card { 
            transition: all 0.2s ease; 
            border: 2px solid transparent;
        }
        .model-card:hover { transform: translateY(-2px); }
        
        .main-container { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-height: 0; }
        .content-wrapper { flex: 1; overflow: hidden; display: flex; flex-direction: column; min-height: 0; }
        
        @keyframes flash-green {
            0%, 100% { background-color: transparent; }
            50% { background-color: rgba(22, 163, 74, 0.2); }
        }
        
        @keyframes flash-red {
            0%, 100% { background-color: transparent; }
            50% { background-color: rgba(239, 68, 68, 0.2); }
        }
        
        .flash-green {
            animation: flash-green 0.6s ease;
        }
        
        .flash-red {
            animation: flash-red 0.6s ease;
        }
        
        span[id^="total-"],
        span[id^="model-"],
        span[id^="unreal-"],
        span[id^="equity-"],
        span[id^="cash-"],
        span[id^="pnl-"],
        span[id^="notional-"],
        span[id^="ticker-"] {
            display: inline-block;
            min-width: 70px;
            text-align: left;
        }
        
        @media (min-width: 1024px) {
            .content-grid {
                display: grid;
                grid-template-columns: 1fr 420px;
                height: 100%;
                gap: 1.5rem;
                padding: 1.5rem;
                overflow: hidden;
            }
            .left-col { display: flex; flex-direction: column; overflow: hidden; min-height: 0; }
            .chart-container { flex: 1; display: flex; flex-direction: column; overflow: hidden; min-height: 0; }
            .chart-area { flex: 1; display: flex; flex-direction: column; min-height: 0; overflow: hidden; }
            .chart-canvas-wrapper { flex: 1; min-height: 0; position: relative; }
            .model-cards-wrapper { flex-shrink: 0; padding: 1rem; }
            .right-col { display: flex; flex-direction: column; overflow: hidden; min-height: 0; }
        }
        
        @media (max-width: 1023px) {
            .content-grid {
                display: flex;
                flex-direction: column;
                height: 100%;
                gap: 0.75rem;
                padding: 0.75rem;
                padding-bottom: 8rem;
                overflow-y: auto;
                overflow-x: hidden;
                -webkit-overflow-scrolling: touch;
            }
            .left-col { flex-shrink: 0; display: flex; flex-direction: column; }
            .chart-container { display: flex; flex-direction: column; }
            .chart-area { height: 350px; display: flex; flex-direction: column; }
            .chart-canvas-wrapper { flex: 1; position: relative; }
            .model-cards-wrapper { padding: 0.75rem 1rem 1rem 1rem; }
            .right-col { 
                flex-shrink: 0;
                display: flex; 
                flex-direction: column; 
                min-height: 500px;
                max-height: 600px;
                overflow: hidden;
            }
            
            .logo-text-full { display: none !important; }
            .logo-text-compact { display: block !important; }
            .nav-text-full { display: none !important; }
            .nav-text-compact { display: block !important; }
        }
        
        @media (min-width: 1024px) {
            .logo-text-compact { display: none !important; }
            .nav-text-compact { display: none !important; }
        }
        
        .icon-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.2s ease;
            cursor: pointer;
        }
        
        .icon-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(16, 185, 129, 0.3);
        }
        
        .nav-link-mobile {
            padding: 4px 8px;
            font-size: 10px;
            font-weight: 700;
            border-radius: 4px;
            transition: all 0.2s ease;
        }
        
        .nav-link-mobile.active {
            background: rgba(16, 185, 129, 0.15);
            color: #10b981;
        }
        
        .nav-link-mobile:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .compact-table {
            font-size: 11px;
        }
        
        .compact-table th,
        .compact-table td {
            padding: 6px 8px !important;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            margin-top: 8px;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        
        .stat-label {
            font-size: 10px;
            color: var(--muted-text);
            font-weight: 500;
        }
        
        .stat-value {
            font-size: 12px;
            font-weight: 700;
        }

/* SweetAlert2 Dark Theme Customization */
.modern-update-popup {
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2) !important;
    border-radius: 16px !important;
    backdrop-filter: blur(20px) !important;
}

.modern-update-popup .swal2-title {
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
    margin-bottom: 20px !important;
}

.modern-update-popup .swal2-html-container {
    color: #d0d0d0 !important;
    font-family: 'Inter', sans-serif !important;
}

/* Confirm Button - Green */
.modern-update-confirm {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 12px 32px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
    transition: all 0.3s ease !important;
}

.modern-update-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5) !important;
}

/* Cancel Button - Dark */
.modern-update-cancel {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #a0a0a0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    padding: 12px 32px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s ease !important;
}

.modern-update-cancel:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Loading Spinner Color */
.swal2-loader {
    border-color: #10b981 transparent #10b981 transparent !important;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Backdrop Blur */
.swal2-container.swal2-backdrop-show {
    backdrop-filter: blur(8px);
}

/* ============================================================================
   EXIT PLAN TOOLTIP STYLES
   home.css dosyasının EN SONUNA EKLE
   ============================================================================ */

/* Tippy.js Custom Theme */
.tippy-box[data-theme~='exit-plan'] {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 
                0 0 40px rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(10px);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: #fff;
    max-width: 400px !important;
}

.tippy-box[data-theme~='exit-plan'][data-placement^='left'] > .tippy-arrow::before {
    border-left-color: rgba(255, 255, 255, 0.15);
}

.tippy-box[data-theme~='exit-plan'][data-placement^='right'] > .tippy-arrow::before {
    border-right-color: rgba(255, 255, 255, 0.15);
}

.tippy-box[data-theme~='exit-plan'][data-placement^='top'] > .tippy-arrow::before {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.tippy-box[data-theme~='exit-plan'][data-placement^='bottom'] > .tippy-arrow::before {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

/* Tooltip Content */
.exit-tooltip {
    padding: 16px;
    min-width: 280px;
}

/* Header */
.exit-tooltip-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.exit-tooltip-icon {
    font-size: 24px;
}

.exit-tooltip-symbol {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Grid */
.exit-tooltip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.exit-tooltip-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.exit-tooltip-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.exit-tooltip-value {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

/* Divider */
.exit-tooltip-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 12px 0;
}

/* PnL */
.exit-tooltip-pnl {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.exit-tooltip-pnl-value {
    font-size: 20px;
    font-weight: 800;
}

/* Exit Plan */
.exit-tooltip-plan {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 12px;
    margin-top: 12px;
}

.exit-tooltip-plan-title {
    font-size: 12px;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.exit-tooltip-plan-item {
    margin-bottom: 10px;
}

.exit-tooltip-plan-item:last-child {
    margin-bottom: 0;
}

.exit-tooltip-plan-label {
    font-size: 10px;
    color: #888;
    margin-bottom: 4px;
}

.exit-tooltip-plan-text {
    font-size: 12px;
    color: #fff;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Footer */
.exit-tooltip-footer {
    text-align: center;
    font-size: 10px;
    color: #666;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tippy-box[data-theme~='exit-plan'] {
        max-width: 90vw !important;
        font-size: 12px;
    }
    
    .exit-tooltip {
        padding: 12px;
        min-width: 260px;
    }
    
    .exit-tooltip-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }
    
    .exit-tooltip-icon {
        font-size: 20px;
    }
    
    .exit-tooltip-symbol {
        font-size: 16px;
    }
    
    .exit-tooltip-grid {
        gap: 10px;
    }
    
    .exit-tooltip-value {
        font-size: 14px;
    }
    
    .exit-tooltip-pnl-value {
        font-size: 18px;
    }
    
    .exit-tooltip-plan {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .tippy-box[data-theme~='exit-plan'] {
        max-width: 95vw !important;
        font-size: 11px;
    }
    
    .exit-tooltip {
        padding: 10px;
        min-width: 240px;
    }
    
    .exit-tooltip-header {
        gap: 8px;
    }
    
    .exit-tooltip-icon {
        font-size: 18px;
    }
    
    .exit-tooltip-symbol {
        font-size: 14px;
    }
    
    .exit-tooltip-plan-text {
        font-size: 11px;
    }
}

/* Smooth Animations */
.tippy-box[data-theme~='exit-plan'][data-animation='shift-away'][data-state='hidden'] {
    opacity: 0;
    transform: scale(0.95);
}

.tippy-box[data-theme~='exit-plan'][data-animation='shift-away'][data-state='visible'] {
    opacity: 1;
    transform: scale(1);
}

/* Touch Friendly */
.exit-plan-btn {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.exit-plan-btn:active {
    transform: scale(0.95);
}

/* Loading State */
.tippy-box[data-theme~='exit-plan'] .exit-tooltip {
    animation: fadeInTooltip 0.3s ease-out;
}

@keyframes fadeInTooltip {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* EXIT PLAN TOOLTIP - MOBİL DÜZELTMELERİ */

/* Mobile Responsive - Agresif Küçültme */
@media (max-width: 768px) {
    .tippy-box[data-theme~='exit-plan'] {
        max-width: 85vw !important;
        font-size: 11px;
    }
    
    .exit-tooltip {
        padding: 10px;
        min-width: unset !important;
        width: 100%;
    }
    
    .exit-tooltip-header {
        margin-bottom: 10px;
        padding-bottom: 8px;
        gap: 8px;
    }
    
    .exit-tooltip-icon {
        font-size: 18px;
    }
    
    .exit-tooltip-symbol {
        font-size: 15px;
    }
    
    .exit-tooltip-grid {
        gap: 8px;
    }
    
    .exit-tooltip-label {
        font-size: 9px;
    }
    
    .exit-tooltip-value {
        font-size: 13px;
    }
    
    .exit-tooltip-divider {
        margin: 8px 0;
    }
    
    .exit-tooltip-pnl-value {
        font-size: 16px;
    }
    
    .exit-tooltip-plan {
        padding: 8px;
        margin-top: 8px;
    }
    
    .exit-tooltip-plan-title {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .exit-tooltip-plan-item {
        margin-bottom: 6px;
    }
    
    .exit-tooltip-plan-label {
        font-size: 9px;
        margin-bottom: 3px;
    }
    
    .exit-tooltip-plan-text {
        font-size: 11px;
        line-height: 1.4;
    }
    
    .exit-tooltip-footer {
        font-size: 9px;
        margin-top: 8px;
        padding-top: 8px;
    }
}

/* Ekstra Küçük Ekranlar - Daha da Kompakt */
@media (max-width: 480px) {
    .tippy-box[data-theme~='exit-plan'] {
        max-width: 90vw !important;
        font-size: 10px;
    }
    
    .exit-tooltip {
        padding: 8px;
    }
    
    .exit-tooltip-header {
        margin-bottom: 8px;
        padding-bottom: 6px;
        gap: 6px;
    }
    
    .exit-tooltip-icon {
        font-size: 16px;
    }
    
    .exit-tooltip-symbol {
        font-size: 13px;
    }
    
    .exit-tooltip-grid {
        gap: 6px;
        grid-template-columns: 1fr 1fr;
    }
    
    .exit-tooltip-label {
        font-size: 8px;
    }
    
    .exit-tooltip-value {
        font-size: 12px;
    }
    
    .exit-tooltip-divider {
        margin: 6px 0;
    }
    
    .exit-tooltip-pnl {
        gap: 4px;
    }
    
    .exit-tooltip-pnl-value {
        font-size: 15px;
    }
    
    .exit-tooltip-plan {
        padding: 6px;
        margin-top: 6px;
        border-radius: 6px;
    }
    
    .exit-tooltip-plan-title {
        font-size: 10px;
        margin-bottom: 6px;
    }
    
    .exit-tooltip-plan-item {
        margin-bottom: 5px;
    }
    
    .exit-tooltip-plan-label {
        font-size: 8px;
        margin-bottom: 2px;
    }
    
    .exit-tooltip-plan-text {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .exit-tooltip-footer {
        font-size: 8px;
        margin-top: 6px;
        padding-top: 6px;
    }
}

/* Landscape Mobil - Özel Düzenleme */
@media (max-width: 768px) and (orientation: landscape) {
    .tippy-box[data-theme~='exit-plan'] {
        max-width: 70vw !important;
    }
    
    .exit-tooltip-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   POSİTİON SECTION & HEADER STYLES
   ============================================ */

.position-section {
    margin-bottom: 16px;
}

.position-model-header {
    transition: all 0.2s ease;
}

.position-header-top {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.position-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.position-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.position-stat-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.position-stat-value {
    font-size: 14px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

/* ============================================
   POSİTİON TABLE STYLES
   ============================================ */

.position-table-wrapper {
    border-radius: 8px;
    overflow: hidden;
}

.position-table {
    border-collapse: collapse;
    width: 100%;
}

.position-table thead {
    background: rgba(0, 0, 0, 0.4);
}

.position-table tbody tr {
    background: rgba(0, 0, 0, 0.2);
}

.position-clickable {
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.position-clickable:hover {
    background: rgba(255, 255, 255, 0.04) !important;
}

.position-clickable:active {
    background: rgba(255, 255, 255, 0.06) !important;
}

/* ============================================
   POSİTİON DETAILS ACCORDION
   ============================================ */

.position-details-row {
    transition: all 0.3s ease-out;
}

.position-details-panel {
    padding: 20px;
    background: linear-gradient(135deg, 
        rgba(var(--model-color), 0.05) 0%, 
        rgba(var(--model-color), 0.02) 100%
    );
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.position-details-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.position-details-icon {
    font-size: 28px;
}

.position-details-symbol {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.position-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.position-details-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.position-details-label {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.position-details-value {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.position-details-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 16px 0;
}

.position-details-pnl {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.position-details-pnl-value {
    font-size: 24px;
    font-weight: 800;
}

.position-details-exit-plan {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
}

.position-details-exit-title {
    font-size: 13px;
    font-weight: 700;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.position-details-exit-item {
    margin-bottom: 14px;
}

.position-details-exit-item:last-child {
    margin-bottom: 0;
}

.position-details-exit-label {
    font-size: 11px;
    color: #888;
    margin-bottom: 6px;
    font-weight: 600;
}

.position-details-exit-text {
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
    word-wrap: break-word;
}

.position-details-footer {
    text-align: center;
    font-size: 11px;
    color: #666;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   POSİTİON ACCORDION - MOBİL UYUMLULUK
   ============================================ */

@media (max-width: 768px) {
    /* Position header mobil düzen */
    .position-model-header {
        padding: 12px !important;
    }
    
    .position-header-top {
        margin-bottom: 10px !important;
        padding-bottom: 10px !important;
    }
    
    /* 3 kolon yerine 3 kolon kalıyor ama küçük */
    .position-stats-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    
    .position-stat-label {
        font-size: 8px !important;
    }
    
    .position-stat-value {
        font-size: 11px !important;
    }
    
    /* Position table mobil */
    .position-table thead th {
        padding: 8px 4px !important;
        font-size: 8px !important;
    }
    
    .position-table tbody td {
        padding: 10px 4px !important;
        font-size: 10px !important;
    }
    
    /* Position details mobil */
    .position-details-panel {
        padding: 16px !important;
    }
    
    .position-details-header {
        gap: 10px !important;
        margin-bottom: 16px !important;
        padding-bottom: 12px !important;
    }
    
    .position-details-icon {
        font-size: 24px !important;
    }
    
    .position-details-symbol {
        font-size: 18px !important;
    }
    
    .position-details-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .position-details-label {
        font-size: 9px !important;
    }
    
    .position-details-value {
        font-size: 14px !important;
    }
    
    .position-details-divider {
        margin: 12px 0 !important;
    }
    
    .position-details-pnl {
        gap: 6px !important;
        margin-bottom: 12px !important;
    }
    
    .position-details-pnl-value {
        font-size: 20px !important;
    }
    
    .position-details-exit-plan {
        padding: 12px !important;
        margin-top: 12px !important;
        border-radius: 10px !important;
    }
    
    .position-details-exit-title {
        font-size: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .position-details-exit-item {
        margin-bottom: 12px !important;
    }
    
    .position-details-exit-label {
        font-size: 10px !important;
        margin-bottom: 5px !important;
    }
    
    .position-details-exit-text {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }
    
    .position-details-footer {
        font-size: 10px !important;
        margin-top: 12px !important;
        padding-top: 12px !important;
    }
}

@media (max-width: 480px) {
    .position-model-header {
        padding: 10px !important;
    }
    
    .position-stats-grid {
        gap: 6px !important;
    }
    
    .position-stat-label {
        font-size: 7px !important;
    }
    
    .position-stat-value {
        font-size: 10px !important;
    }
    
    .position-table thead th {
        padding: 6px 3px !important;
        font-size: 7px !important;
    }
    
    .position-table tbody td {
        padding: 8px 3px !important;
        font-size: 9px !important;
    }
    
    .position-details-panel {
        padding: 12px !important;
    }
    
    .position-details-icon {
        font-size: 20px !important;
    }
    
    .position-details-symbol {
        font-size: 16px !important;
    }
    
    .position-details-label {
        font-size: 8px !important;
    }
    
    .position-details-value {
        font-size: 13px !important;
    }
    
    .position-details-pnl-value {
        font-size: 18px !important;
    }
    
    .position-details-exit-title {
        font-size: 11px !important;
    }
    
    .position-details-exit-label {
        font-size: 9px !important;
    }
    
    .position-details-exit-text {
        font-size: 11px !important;
    }
}