.variables-section,
.insights-section,
.visualization-section {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.variables-section h3,
.insights-section h3,
.visualization-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
}

.variables-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.variable-item {
    background: white;
    padding: 12px;
    border-radius: 6px;
    /* border-left: 4px solid #3498db; */
}

.variable-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.variable-name {
    font-weight: 600;
    color: #2c3e50;
}

.variable-score {
    font-size: 0.9em;
    padding: 4px 8px;
    border-radius: 4px;
}

.variable-score.positive {
    background: #e8f5e9;
    color: #2e7d32;
}

.variable-score.negative {
    background: #ffebee;
    color: #c62828;
}

.variable-info {
    font-size: 0.95em;
    color: #546e7a;
}

.variable-description {
    margin-bottom: 6px;
}

.variable-justification {
    font-style: italic;
    color: #78909c;
}

.insights-content {
    background: white;
    padding: 15px;
    border-radius: 6px;
    line-height: 1.6;
}

.insights-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.insights-content li {
    margin-bottom: 8px;
}

.chart-container {
    background: white;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
}

.analysis-chart {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .variable-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .variable-score {
        align-self: flex-start;
    }
} 