/* Data page specific overrides only */

.sankey-wrapper {
    max-width: 1000px;
    margin: 30px auto;
    margin-left: auto;
    margin-right: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 20px;
    overflow: hidden;
}

#sankey {
    width: 100%;
    height: 600px;
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    #sankey {
        height: 500px;
    }
    
    .sankey-wrapper {
        padding: 15px 10px;
    }
    
    /* All NCS chart containers on mobile */
    .ncs-chart-container {
        height: 250px !important;
        max-height: 250px;
    }
}

