/* Investment Analytics Styles */

/* Sharpe Ratio Cards */
.sharpe-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}

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

.sharpe-value {
    font-size: 48px;
    font-weight: bold;
    margin: 15px 0;
}

.sharpe-label {
    color: #6c757d;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0;
}

.sharpe-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

/* Sharpe Ratio Color Classes */
.sharpe-poor {
    color: #dc3545;
}

.sharpe-good {
    color: #ffc107;
}

.sharpe-very-good {
    color: #28a745;
}

.sharpe-excellent {
    color: #007bff;
}

/* Chart Container */
.chart-container {
    position: relative;
    height: 500px;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Interpretation Guide */
.interpretation-guide {
    background: #f8f9fa;
    border-left: 4px solid #69b3a2;
    padding: 20px;
    border-radius: 5px;
}

.interpretation-guide h5 {
    color: #69b3a2;
    margin-bottom: 15px;
}

.interpretation-guide ul {
    list-style: none;
    padding-left: 0;
}

.interpretation-guide li {
    padding: 5px 0;
}

/* Ticker Display */
.ticker-display {
    font-size: 36px;
    font-weight: bold;
    color: #69b3a2;
    margin: 20px 0;
}

/* Statistics Section */
.stats-container {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 500px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-item {
    margin-bottom: 0;
}

.stat-label {
    color: #6c757d;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.stat-value {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}

.stat-value.positive {
    color: #28a745;
}

.stat-value.negative {
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .chart-container {
        height: 300px;
    }
    
    .sharpe-value {
        font-size: 36px;
    }
    
    .stat-value {
        font-size: 24px;
    }
}