.dashboard-data {
    padding: 10px 15px 0px 20px;
}
.dstudent-table-container {
    box-sizing: border-box;
    overflow: hidden;
    padding-top: 4px;
    clear: both;
}

/*********** Generic Table Styles ************/
.dstudent-table {
    height: 100%;
    box-sizing: border-box;
}
.dstudent-table .theader {
    height: 27px;
    font-size: 14px;
    /*border: 1px solid blue;*/
    box-sizing: border-box;
    white-space: nowrap;
}
.dstudent-table .header-cell {
    display: inline-block;
    font-weight: bold;
}
.dstudent-table .tcontents {
    width: 100%;
    overflow: auto;
}
.dstudent-table .tcontents .trow {
    clear: both;
    height: 49px;
    border-top: 1px solid #dddddd;
}
.dstudent-table .content-cell {
    padding-top: 18px;
    line-height: 18px;
    font-size: 16px;
    float: left;
}
/********* End of Generic Table Styles *********/


/*************** Fixed Table Styles *****************/
.dstudent-table.fixed {
    width: 476px;
    float: left;
}
.dstudent-table.fixed .theader {
    overflow: hidden;
}
.dstudent-table.fixed .header-cell {
    float: left;
}
.dstudent-table.fixed .content-cell {
    padding-right: 6px;
    box-sizing: border-box;
}
.dstudent-table.fixed .student-name {
    width: 185px;
    font-size: 16px;
}
.dstudent-table.fixed .student-email {
    width: 185px;
    font-size: 14px;
}
.dstudent-table.fixed .student-number {
    width: 130px;
    font-size: 14px;
    padding-right: 0;
    text-align: center;
}
.dstudent-table.fixed .tcontents {
    overflow: hidden;
}
.dstudent-table.fixed .tcontents .ellipsis-container {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.dstudent-table.fixed .tcontents .filler {
    height: 17px; /* horizontal scrollbar height */
    width: 100%;
}
/*********** End of Fixed Table Styles ***********/


/************* Scrollable Table Styles ************/
.dstudent-table.scrollable {
    overflow: hidden;
    margin-left: 476px;
}
.dstudent-table.scrollable .theader-container {
    overflow: hidden;    
}
.dstudent-table.scrollable .theader .header-cell {
    height: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.dstudent-table.scrollable .header-cell, 
.dstudent-table.scrollable .content-cell {
    width: 100px;
    line-height: 20px;
    text-align: center;
    box-sizing: border-box;
}
.dstudent-table.scrollable .header-cell.lesson-average,
.dstudent-table.scrollable .content-cell.lesson-average {
    width: 104px;
}
.dstudent-table.scrollable .theader-container .filler {
    display: inline-block;
    width: 17px; 
    height: auto;
}
.dstudent-table.scrollable .trow {
    white-space: nowrap;
}
.dstudent-table.scrollable .content-cell {
    float: none;
    font-size: 16px;
    display: inline-block;
    vertical-align: top;
}
.dstudent-table.scrollable .tcontents {
    overflow: auto;
}
.dstudent-table.scrollable .tcontents input[type="text"] {
    top: 0;
}
.dstudent-table .mark-value {
    display: none;
}
.dstudent-table .format-percentage .mark-value.percentage {
    display: inline;
}
.dstudent-table .format-score .mark-value.score {
    display: inline;
}
.dstudent-table .format-score .mark-value.auto-completed,
.dstudent-table .format-percentage .mark-value.auto-completed {
    color: #ccc;
}
/********* End of Scrollable Table Styles *********/

/****** Dashboard Control Panel Styles ********/
.dashboard-data .control-panel {
    height: 39px;
    margin-top: 2px;
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
    margin-bottom: 5px;
}
.dashboard-data .control-actions {
    float: left;
    margin-right: 9px;
}
.dashboard-data .control-action {
    background: #073455;
    color: white;
    min-width: 120px;
    height: 32px;
    text-shadow: none;
}
.dashboard-data .control-action:active {
    background: #16639c; 
}
.dashboard-data .control-action.exportToExcel {

}
.dashboard-data .column-selectors {
    float: left;
}
.dashboard-data .column-selector {
    background: white;
    min-width: 120px;
    height: 32px;
    text-shadow: none;
}
.dashboard-data .column-selector.pressed, 
.dashboard-data .column-selector.pressed:hover {
    background-color: #00a7c8;
    color: white;
}
.dashboard-data .column-selector:hover {
    background-color: #f5f5f5;
}
.dashboard-data .type-selectors {
    float: right;
}
.dashboard-data .control-action, 
.dashboard-data .column-selector,
.dashboard-data .type-selector {
    float: left;
    margin-right: 9px;
}
.dashboard-data .type-selector.button-toggle {
    background-color: #073455;
}
.dashboard-data .control-action:last-child,
.dashboard-data .column-selector:last-child,
.dashboard-data .type-selector:last-child {
    margin-right: 0;
}
/****** End of Dashoard Control Panel Styles ********/
