/* ==========================
PSD — Table Container
============================= */
.psd-page .table-panel {
    height: 550px;
}

#psd-table-container {
    flex: 1;
    overflow: auto;
    min-height: 0;
}
/* ==========================
PSD — Chart 
============================= */
#psd-chart {
    flex: 4 1 600px;
    height: 550px;
    min-width: 800px;
    max-width: 900px;
    margin-top:0;
    align-self: flex-start;
}

/* ==========================
PSD Modal
============================= */
#psd-sample-input-table {
    width: 100%;
}

/* ==========================
Responsive — Tablet
============================= */
@media (max-width: 1024px) {

    #psd-chart {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: 450px;
        flex: none;
    }

    #psd-table-container {
        overflow: hidden;
        max-height: 300px;
        max-width: 600px;
    }

    #psd-table-container:hover {
        overflow: auto;
    }
}

/* ==========================
Responsive — Mobile
============================= */
@media (max-width: 600px) {

    #psd-chart {
        height: 350px;
    }
}