/* Table base styles */
table {
    border-collapse: collapse;
    width: 100%;
    height: auto;
    font-family: "Source Sans 3", sans-serif;
}
.table-section {
    overflow: auto;
}
/* Header row */
table th {
    background-color: #f1b825 !important;
}

/* All cells */
table th,
table td {
border: 1px solid #ccc;
padding: 8px;
text-align: left;
color:#000000;
}
table a {
    color: #4298b5 !important;
    font-weight: bold;
    text-decoration: underline;
}
table a:hover {
    color: #000000 !important;

}
 
@media (min-width: 600px) and (max-width: 1024px) {
    .table-section {
        overflow: auto;
    }

    .table-section table {
        width: 1400px;
    }
}

@media (max-width: 600px) {
    .table-section {
        overflow: auto;
    }

    .table-section table {
        width: 1400px;
    }
}