﻿/* Main layout changes */
.container {
    width: 100%;
}

.content {
    padding: 20px 0 40px;
}


/* data grid tables */
table.data-grid {
    width: 100%;
    border-spacing: 0;
}

    table.data-grid td {
        text-align: center;
        font-size: 14px;
        padding: 20px;
    }

    table.data-grid th {
        background-color: #333;
        text-align: center;
        font-size: 14px;
        padding: 20px;
        color: #FFF;
    }

    table.data-grid tr:first-child th:first-child {
        border-top-left-radius: 10px;
    }
    
    table.data-grid tr:first-child th:last-child {
        border-top-right-radius: 10px;
    }

    table.data-grid tr:last-child td:first-child {
        border-bottom-left-radius: 10px;
    }
    
    table.data-grid tr:last-child td:last-child {
        border-bottom-right-radius: 10px;
    }
