body {
    font-family: Arial;
}
.container {
    margin: 0 auto;
}
nav {
    width: 100%;
    text-align: left;
}
.header {
    font-size: 24px;
    border-bottom: 1px solid #000;
}
.sub_header {
    font-size: 16px;
}
.header ul, .sub_header ul {
    border-radius: 8px;
    list-style-type: none;
    display: flex;
    padding: 0;
}
.header ul li, .sub_header ul li {
    padding: 0 10px;
    font-weight: bold;
}
.sub_header ul li {
    padding: 10px;
    color: #fff;
}
.sub_header ul li.active {
    border: 1px solid #000;
    border-radius: 8px;
    background: #000;
    color: #fff;
}
.header ul li a, .sub_header ul li a {
    text-decoration: none;
    color: rgba(0,0,0,.55);
}
.header ul li a:hover {
    color: rgba(0,0,0,.7);
}
.header ul li a.active {
    color: #000;
}
.sub_header ul li.active a{
    color: #fff;
}
section, footer {
    display: block;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
section {
    margin: 40px 0;
    font-size: 20px;
}
.input {
    margin: 10px 0;
    position: relative;
}
.input input, .input select {
    padding: 10px;
    width: 300px;
}
.input input[type="checkbox"] {
    width: auto;
}
.submit {
    margin: 20px 0;
}
.submit input {
    width: auto;
    font-size: 20px;
    font-weight: bold;
    background: #1266f1;
    color: #fff;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 5px;
    border: 1px solid #1266f1;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
}
.submit input.small {
    font-size: 14px;
    border-radius: 8px;
    padding: 5px 10px;
}
.submit input:hover {
    background: #0e52c1;
}
.submit input:disabled {
    background: #ccc;
    color: #000;
    cursor: not-allowed;
}
.response, .mapped_response, .response_div {
    display: none;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    color: #000;
    white-space: pre;
    width: max-content;
    margin: 0 auto;
}
.response.error, .mapped_response.error, .response_div.error {
    display: block;
    border: 1px solid darkred;
    background: indianred;
}
.response.success, .mapped_response.success, .response_div.success {
    display: block;
    border: 1px solid darkgreen;
    background: darkseagreen;
}

.content {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
}

.row {
    text-align: left;
}

.row.flex {
    display: flex;
    column-gap: 20px;
}

input.small {
    width: 250px;
}
input.large {
    width: 96%;
}
.flex_row {
    margin-right: 10px;
    overflow-x: scroll;
}
.flex_row h3 {
    text-align: left;
    color: #333;
}
a {
    text-decoration: none;
}
a.delete {
    color: red;
}
table, th, td {
    border: 1px solid #e0e0e0;
    border-collapse: collapse;
    font-size: .9em;
    text-align: left;
}

th, td {
    padding: 10px 20px;
}
.client_details th, td {
    padding: 20px;
    text-align: left;
}
.client_details thead th {
    font-size: 1.5em;
    font-weight: bold;
}
.form-label {
    font-weight: normal;
    font-size: 11px;
    position: absolute;
    z-index: 2;
    top: -5px;
    background: #fff;
    left: 10px;
}
.flex_row_seperator {
    width: 40%;
}
.seperator {
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
}
.file-input {
    width: 550px;
}
.file-input-overlay {
    display: flex;
    width: 100%;
    border-radius: 1px;
    border: 1px solid #676774;
}
.file-btn {
    cursor: pointer;
    border-right: 1px solid #676774;
}
.file-btn, .file-info {
    padding: 10px;
    font-size: .9em;
}
.file-info {
    width: 80%;
}
input.file {
    display: none;
}
.center {
    text-align: center;
}
input.small_btn {
    width: max-content;
    padding: 10px;
    box-shadow: none;
    border-radius: 3px;
    font-size: 12px;
    display: inline;
}
input.positive_btn {
    background: #5cb85c;
    border-color: #4cae4c;
}
input.positive_btn:hover {
    background: #47a447;
    border-color: #398439;
}
input.negative_btn {
    background-color: #f0ad4e;
    border-color: #eea236;
}
input.negative_btn:hover {
    background-color: #ed9c28;
    border-color: #d58512;
}
table {
    width: 100%;
    overflow: auto;
    border-collapse: collapse;
}
th {
    font-weight: bold;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1;
    box-shadow: 0 2px 2px -1px black;
}
th, td {
    padding: 10px;
}
.pagination {
    display: flex;
    width: max-content;
    margin: 0 auto;
    align-items: center;
}
.pagination ul {
    list-style-type: none;
    display: flex;
    width: auto;
    margin: 10px auto 15px;
    max-width: 310px;
}
.pagination ul li {
    border: 1px solid #ddd;
    width: 30px;
    padding: 5px;
    cursor: pointer;
}
.pagination ul li a{
    color: #428bca;
}
.pagination ul li.active {
    color: #fff;
    background: #428bca;
    border-color: #428bca;
}
.pagination ul li:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.pagination ul li:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
.pagination .search {
    margin-left: 10px;
}
.pagination .search input {
    padding: 6px 10px;
    width: 300px;
    border-radius: 5px;
}
.hidden {
    display: none !important;
}
.loading, .info-alert {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.info-alert {
    text-align: left;
}
.btn-primary {
    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.change_mapping {
    margin: 10px 0;
}
.update_wage_code .btn {
    margin: 10px 0;
}
.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}
.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 4px;
    text-align: left;
}
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.dialog {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.dialog_container {
    background-color: #fefefe;
    margin: 10% auto;
    border: 1px solid #888;
    width: 40%;
    border-radius: 8px;
}
.dialog_header {
    position: relative;
    padding: 10px;
    background-color: #cdcdcd;
    border-radius: 8px 8px 0 0;
}
.dialog_header h2 {
    font-weight: bold;
    font-size: 18px;
}
.dialog_body {
    padding: 20px;
    border-bottom: 1px solid #ccc;
}
.dialog_body form label {
    margin-right: 5px;
}
.dialog_body form input {
    padding: 10px;
}
.dialog_footer {
    margin: 20px;
}
.dialog_footer button {
    margin: 5px;
}
.close_dialog {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
}
select {
    max-width: 500px;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 24px;
    margin: 10px;
}
.toggle-switch .toggle-input {
    display: none;
}
.toggle-switch .toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 24px;
    background-color: #CD5C5C;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: right;
    padding-right: 5px;
    font-weight: bold;
}
.toggle-switch .toggle-label:after {
    content: "No";
    top: 3px;
    position: relative;
}
.toggle-switch .toggle-label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 20%;
    top: 2px;
    left: 2px;
    background-color: #fff;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}
.toggle-switch .toggle-input:checked + .toggle-label {
    background-color: #4CAF50;
    text-align: left;
    padding-right: 0px;
    padding-left: 5px;
}
.toggle-switch .toggle-input:checked + .toggle-label:after {
    content: "Yes";
    top: 3px;
    position: relative;
}
.toggle-switch .toggle-input:checked + .toggle-label::before {
    transform: translateX(40px);
}