body {
    min-height: 100vh;
    background: url("../bg.png") fixed no-repeat;
    background-size: cover;
    padding: 3rem 0;
}

body * {
    font-family: 'Roboto', sans-serif;
}

.table-container {
    width: 60%;
    min-width: 320px;
    margin: 0 auto;
    position: relative;
}

.table-container .custom-select {
    width: auto;
}

.table-container .dynatable-per-page-label {
    color: white;
}

.table-container .dynatable-search {
    margin: 0;
}

.table-container .table-header {
    margin: 1rem 0;
    color: white;
}

.table-container .table td,
.table-container .table th {
    border: none;
}

.table-container table {
    width: 100%;
    margin-top: 1rem;
}

.table-container .table th {
    padding: .75rem 1.5rem;
    height: 30px;
    background: #a2a7b1;
    color: white;
    text-transform: uppercase;
}

.table-container th a {
    color: white;
}

.table-container th a:hover {
    text-decoration: none;
}

.table-container .table td {
    background: #dde0e6;
    color: #555555;
    font-size: .9rem;
    padding: 1.5rem;
}

.table-container .table td:first-child i,
.table-container .table td:first-child img {
    font-size: 1.5rem;
}

.table-container td:nth-child(2) {
    font-weight: bold;
}

#dynatable-processing-keys-table {
    position: absolute;
    background: white;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dynatable-pagination-links-keys-table {
    float: left;
    padding: 0;
    color: white;
}

#dynatable-record-count-keys-table {
    float: right;
    padding-left: 1rem;
    color: white;
}

@media (max-width: 960px) {
    .table-container {
        width: 80%;
    }

    .table-container .table th {
        font-size: .7rem;
        padding: .75rem 1rem;
    }

    .table-container .table td {
        font-size: .8rem;
        padding: 1.5rem 1rem;
    }

    .table-container #dynatable-pagination-links-keys-table,
    .table-container #dynatable-record-count-keys-table {
        float: none;
        text-align: center;
        padding: 0;
    }
}