/* Extra Section */
.extra-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #E9E9E9;
}

.extra-container {
    width: 100%;
}

.extra-header h3 {
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 4px;
    font-size: 18px;
}

.extra-subtitle {
    color: #777;
    font-size: 14px;
    margin: 0 0 20px 0;
}

.extra-chart {
    height: 300px;
    margin-top: 20px;
}

.extra-chart canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Mobile extra section adjustments */
@media (max-width: 768px) {
    .extra-section {
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .extra-chart {
        height: 250px;
    }
}