/* Trading Risk Analyzer - Narrative Design CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-brand a:hover {
    transform: scale(1.05);
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Theme Switcher Button */
.theme-switcher {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.theme-switcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.theme-switcher:active {
    transform: translateY(0);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

body {
    padding-top: 70px;
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Story Header */
.story-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.story-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.story-tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Story Navigation */
.story-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.story-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
    cursor: pointer;
}

.story-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.story-step.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.step-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
}

.story-step.active .step-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Upload Section */
.upload-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.narrative-flow {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.flow-icon {
    font-size: 2.5rem;
}

.flow-text {
    text-align: left;
}

.flow-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.flow-description {
    color: #7f8c8d;
    font-size: 1rem;
}

.upload-label {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-label:hover .upload-box {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.upload-box {
    border: 3px dashed #bdc3c7;
    border-radius: 16px;
    padding: 50px 30px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #667eea;
}

.upload-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.upload-box p {
    color: #7f8c8d;
    margin-bottom: 10px;
    font-size: 1rem;
}

.upload-box small {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Preview Section */
.preview-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.preview-section h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

#previewImages {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.preview-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.preview-image:hover {
    border-color: #667eea;
    transform: scale(1.05);
}

/* Loading Section */
.loading {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.loading-content {
    text-align: center;
    color: #2c3e50;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.loading-content p {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.loading-time-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 8px 12px;
    margin: 15px 0;
    font-size: 0.85rem;
    color: #856404;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width 0.3s ease;
}

/* Loading Steps */
.loading-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.loading-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.loading-step.active {
    opacity: 1;
    color: #667eea;
}

.loading-step.completed {
    opacity: 1;
    color: #27ae60;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.loading-step.active .step-icon {
    background: #667eea;
    color: white;
}

.loading-step.completed .step-icon {
    background: #27ae60;
    color: white;
}

.step-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Features Section */
.features-section {
    margin-bottom: 60px;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.features-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1rem;
}

/* Dashboard */
.dashboard {
    margin-top: 40px;
}

/* Export Section */
.export-section {
    text-align: center;
    margin-bottom: 30px;
}

.export-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.export-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.export-icon {
    font-size: 1.2rem;
}

/* Chapter Styles */
.chapter {
    background: white;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chapter-header {
    padding: 30px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e9ecef;
}

.chapter-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.chapter-icon {
    font-size: 1.8rem;
}

.chapter-subtitle {
    color: #7f8c8d;
    font-size: 1rem;
}

.chapter-content {
    padding: 20px 32px;  /* Reduced from 25px 40px (-20%) */
}

/* Account Summary Styles */
.account-status-badge {
    text-align: center;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.account-status-badge.safe {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.account-status-badge.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.account-status-badge.danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.account-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    font-size: 14px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.metric-row.highlight {
    background: #fff3cd;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 600;
    grid-column: 1 / -1;
    border-bottom: none;
}

.metric-label {
    color: #6c757d;
}

.metric-value {
    font-weight: 600;
}

.metric-note {
    color: #6c757d;
    font-size: 0.9em;
    margin-left: 8px;
}

/* Position Allocation Styles */
.position-allocation-section {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.allocation-row {
    display: flex;
    align-items: center;
    margin: 10px 0;
    font-family: monospace;
    font-size: 0.95rem;
}

.allocation-symbol {
    width: 140px;
    font-weight: 600;
}

.allocation-bar {
    flex: 1;
    color: #667eea;
    letter-spacing: 1px;
}

.allocation-pct {
    width: 70px;
    text-align: right;
    font-weight: 600;
}

/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));  /* Reduced from 280px (-7%) */
    gap: 12px;  /* Reduced from 15px (-20%) */
    margin-bottom: 16px;  /* Reduced from 20px (-20%) */
}

.story-card {
    background: #f8f9fa;
    border-radius: 10px;  /* Reduced from 12px (-17%) */
    padding: 15px;  /* Reduced from 18px (-17%) */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.story-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.story-card.success {
    border-left: 5px solid #27ae60;
}

.story-card.warning {
    border-left: 5px solid #f39c12;
}

.story-card.danger {
    border-left: 5px solid #e74c3c;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-icon {
    font-size: 1.8rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.card-value {
    font-size: 1.6rem;  /* Reduced from 1.8rem (-11%) */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    font-family: 'SF Mono', 'Monaco', monospace;
}

.card-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.card-detail {
    font-size: 0.9rem;
    color: #7f8c8d;
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

/* Gauge */
.gauge {
    width: 100%;
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 10px;
}

.gauge-fill {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

/* Insights Panel */
.insights-panel {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    border-left: 5px solid #667eea;
}

.insights-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.insights-icon {
    font-size: 1.5rem;
}

.insights-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.insights-content {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Table Styles */
.story-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.story-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
}

.story-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.story-table tr:hover {
    background: #f8f9fa;
}

.story-table tr:last-child td {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .container {
        padding: 15px;
    }
    
    .story-header h1 {
        font-size: 2.5rem;
    }
    
    .story-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .narrative-flow {
        flex-direction: column;
        text-align: center;
    }
    
    .flow-text {
        text-align: center;
    }
    
    .story-table {
        font-size: 0.8rem;
    }
    
    .story-table th,
    .story-table td {
        padding: 10px 12px;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px;
        gap: 16px;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Risk Breakdown Styles */
.risk-breakdown {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #dee2e6;
}

.risk-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.risk-components {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.risk-component {
    background: white;
    border-radius: 6px;
    padding: 10px 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.component-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.component-name {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.component-values {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.component-value {
    font-weight: 700;
    color: #667eea;
    font-size: 0.95rem;
}

.component-percentage {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.component-bar {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.component-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.component-explanation {
    color: #6c757d;
    font-size: 0.85rem;
    line-height: 1.3;
    font-style: italic;
}

/* Margin Call Enhanced Styles */
.margin-call-item {
    background: white;
    border: 2px solid #feb2b2;
    border-radius: 8px;
    padding: 8px 12px;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.margin-call-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 178, 178, 0.2);
}

.margin-call-item.safe {
    border-color: #9ae6b4;
}

.margin-call-item.high-risk {
    border-color: #f56565;
}

.margin-call-item.moderate-risk {
    border-color: #f59e0b;
}

.margin-call-item.closest {
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

.margin-call-symbol {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.risk-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.risk-badge.high-risk {
    background: #fee2e2;
    color: #dc2626;
}

.risk-badge.moderate-risk {
    background: #fef3c7;
    color: #d97706;
}

.risk-badge.safe {
    background: #d1fae5;
    color: #065f46;
}

.margin-call-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.margin-call-detail {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.7rem;
    color: #6b7280;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2px;
}

.detail-value {
    font-size: 0.9rem;
    color: #1f2937;
    font-weight: 600;
}

/* Enhanced Table Styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 0.9rem;
}

.data-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.data-table th {
    padding: 12px 10px;  /* Reduced from 15px 12px (-20%) */
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.data-table td {
    padding: 10px;  /* Reduced from 12px (-17%) */
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.data-table tbody tr:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* Position type styling */
.position-type {
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.position-type.buy {
    color: #10b981;
    font-weight: 600;
}

.position-type.sell {
    color: #ef4444;
    font-weight: 600;
}

.position-type.long-position {
    color: #10b981;
    font-weight: 600;
}

.position-type.short-position {
    color: #ef4444;
    font-weight: 600;
}

.position-type.mixed-position {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

/* P&L styling */
.pnl-positive {
    color: #10b981;
    font-weight: 600;
}

.pnl-negative {
    color: #ef4444;
    font-weight: 600;
}

.pnl-neutral {
    color: #6b7280;
    font-weight: 600;
}

/* Symbol styling */
.symbol-name {
    font-weight: 600;
    color: #374151;
    font-family: 'Courier New', monospace;
}

/* Price styling */
.price-value {
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

/* Exposure styling */
.exposure-value {
    font-weight: 600;
    color: #667eea;
}