<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.dataTables_wrapper {
    max-width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.body-searchCV .dataTables_filter,
.body-searchJOBAD .dataTables_filter {
    display: none;
}
.dataTables_length {
    flex: 1;
    min-width: 200px;
}

.dataTables_filter {
    flex: 2;
    text-align: end;
    margin-bottom: 10px;
}
.dataTables_length label, .dataTables_filter label {
    width: 100%;
}
.dataTables_length select, .dataTables_filter input {
    padding: 5px 10px;
    border: 1px solid var(--grey);
    border-radius: 20px;
}
.dataTables_filter input {
    width: 100%;
    max-width: 400px;
}

.dataTable {
    width: 100%;
    min-width: 100%;
}
.dataTable thead tr {
    background-color: var(--secondary);
    color: white;
    border-bottom: 20px solid transparent;
}
.dataTable tbody tr {
    background-color: var(--secondaryLight);
    border-bottom: 20px solid transparent;
    cursor: pointer;
    transform: scale(1);
    transition: 0.3s;
}
.dataTable th, .dataTable td {
    padding: 20px;
}

.dataTable .databaseId {
    max-width: 0;
    overflow: hidden;
}

.dataTable td i {
    color: var(--primary); 
    margin-right: 5px;
}

.dataTables_info {
    flex: 1;
    min-width: 200px;
}

.dataTables_paginate {
    flex: 2;
    text-align: end;
}
.dataTables_paginate a {
    min-width: 25px;
    min-height: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    background-color: var(--secondary);
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    color: white;
}
.dataTables_paginate a:last-child {
    margin-right: 0;
}
.dataTables_paginate span a {
    background-color: var(--lightgrey);
    color: var(--secondary);
    margin-right: 10px !important;
}

@media screen and (min-width: 600px){
    .dataTable tbody tr:hover {
        transform: scale(1.1);
    }
}</pre></body></html>