@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);

body {
    font-family: 'Roboto', sans-serif;
    background: -webkit-linear-gradient(left, #25c481, #25b7c4);
    background: linear-gradient(to right, #25c481, #25b7c4);
}

header {
    font-size: 2em;
    text-align: center;
    color: #fff;
}

footer {
    font-size: .8em;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    color: #fff;
}

section {
    margin: 50px;
}

table {
    width:100%;
    table-layout: fixed;
}

.tbl-header {
    background-color: rgba(255,255,255,0.3);
}

.tbl-content {
    height:300px;
    overflow-x:auto;
    margin-top: 0px;
    border: 1px solid rgba(255,255,255,0.3);
}

th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
}

td {
    padding: 15px;
    text-align: left;
    vertical-align:middle;
    font-weight: 300;
    font-size: 12px;
    border-bottom: solid 1px rgba(255,255,255,0.1);
    color: #fff;
}

.tbl-date {
    width: 150px;
}

.tbl-time {
    width: 100px;
}

/* for webkit browsers */
::-webkit-scrollbar {
    width: 6px;
} 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
} 
::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
}