/************************
    table header
************************/

.table-header {
    margin-top: 16px;
    box-sizing: border-box;
    font-family: Lato-Regular;
    color: #8ee5f0;
    background-color: #123456;
}

.table-header > div {
    background-color: #123456;
    box-sizing: border-box;
    display: inline-block;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}

.table-header a, .table-header a:visited {
    color: #8ee5f0;
}

.admin-parameters .table-header {
    width: 100%;
}
.admin-parameters .table-header > div {
    width: 8%;
    padding-top: 8px;
    padding-bottom: 8px;
}
.admin-parameters .table-header > div:first-child {
    width: 28%;
}

/************************
    table body
************************/

.table-cell {
    display: inline-block;
    font-family: Lato-Regular;
    border: 1px solid #123456;
    text-align: center;
    padding: 5px 0;
    box-sizing: border-box;
    color: black;
    cursor: pointer;
}

.table-row:nth-child(even) input, .table-row:nth-child(even) div {
    background-color: #ceebf5 ;
}
.table-row:nth-child(odd) input, .table-row:nth-child(odd) div {
    background-color: #7eb5b0 ;
}

.admin-parameters .table-cell {
    width: 8%;
}

.admin-parameters .table-cell:first-child {
    width: 28%;
}
