/*Admin Styles*/

.controlDiv {
  padding: 10px;
  width: 100%;
}

.aio_admin_wrapper {
  background-color: #fff;
  padding: 30px;
  height: 100%;
  max-width: 1200px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}

.aio_admin_wrapper h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #1d2327;
  margin-top: 20px;
  margin-bottom: 10px;
}

.aio-lite-settings-header{
  padding: 20px;
}

.aio_admin_wrapper h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
}

.aio_admin_wrapper .about-text {
  font-size: 16px;
  color: #50575e;
  margin-bottom: 30px;
  margin-top: 0;
}

/* Modern Tab Styles */
.aio_admin_wrapper .nav-tab-wrapper {
  border-bottom: 2px solid #e5e7eb;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  gap: 5px;
}

.aio_admin_wrapper .nav-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #50575e;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: -2px;
  border-radius: 6px 6px 0 0;
}

.aio_admin_wrapper .nav-tab:hover {
  background: #f6f7f7;
  color: #1d2327;
}

.aio_admin_wrapper .nav-tab-active,
.aio_admin_wrapper .nav-tab-active:hover {
  background: #fff;
  color: #2271b1;
  border-bottom: 3px solid #2271b1;
  font-weight: 600;
}

.aio_admin_wrapper .nav-tab .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

/* General Settings Page Styles */
.aio_admin_wrapper h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1d2327;
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.aio_admin_wrapper .time-clock-table {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.aio_admin_wrapper .time-clock-table tr {
  border-bottom: 1px solid #f0f0f1;
}

.aio_admin_wrapper .time-clock-table tr:last-child {
  border-bottom: none;
}

.aio_admin_wrapper .time-clock-table th {
  background: #f9fafb;
  padding: 16px 20px;
  font-weight: 600;
  color: #1d2327;
  width: 220px;
  vertical-align: middle;
}

.aio_admin_wrapper .time-clock-table td {
  padding: 16px 20px;
  vertical-align: middle;
}

.aio_admin_wrapper .time-clock-table tr.alternate {
  background: #fafbfc;
}

.aio_admin_wrapper .time-clock-table input[type="text"] {
  padding: 8px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  font-size: 14px;
  min-width: 250px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.aio_admin_wrapper .time-clock-table input[type="text"]:focus {
  border-color: #2271b1;
  box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.15);
  outline: none;
}

.aio_admin_wrapper .time-clock-table label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 15px;
  cursor: pointer;
}

.aio_admin_wrapper .time-clock-table i {
  color: #6b7280;
  font-size: 13px;
}

.aio_admin_wrapper .settings-error {
  background: #fff8e5;
  border-left: 4px solid #dba617;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}

/* Help/Support Page Styles */
.aio-support-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.aio-support-section .support-image {
  flex-shrink: 0;
}

.aio-support-section .support-image img {
  max-width: 280px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.aio-support-section .support-content {
  flex: 1;
}

.aio-support-section .support-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
}

.aio-support-section .support-content p {
  font-size: 16px;
  color: #64748b;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

.aio-support-section .button-primary {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.aio-support-section .button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

.aio-tc-alert {
  padding: 20px !important;
}

#aio-reports-results {
  padding: 10px;
}

/* Only affects your plugin's admin page */
.aio_admin_wrapper .button,
.aio_admin_wrapper .button-primary,
.aio_admin_wrapper .time-clock-admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px; /* tighter space between icon and text */
  vertical-align: middle;
  padding: 2px 10px;
}

/* Dashicons inside buttons */
.aio_admin_wrapper .button .dashicons,
.aio_admin_wrapper .time-clock-admin-button .dashicons {
  font-size: 15px;
  line-height: 1;
  transform: translateY(1px);
  margin: 0;
}

/* White icons for primary buttons */
.aio_admin_wrapper .button-primary .dashicons {
  font-size: 15px;
  line-height: 1;
  transform: translateY(1px);
  margin: 0;
  color: #fff;
}

.aio-placeholder {
  padding: 12px;
  background: #f6f7f7;
  border: 1px dashed #ccd0d4;
  border-radius: 6px;
  color: #555;
  font-style: italic;
}

.shiftStatus {
  background-color: #00a65a;
  border-color: #008d4c;
  border-radius: 3px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid transparent;
  display: block;
  width: 50%;
  text-align: center;
}

.shiftStatus span {
  color: white;
  font-weight: 800;
}

#aio_tc_news p {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 32px;
  margin: 0 0 24px;
}

#aio_tc_news ul,
#aio_tc_news li {
  font-size: 14px;
  list-style-type: square;
  margin-left: 20px;
}

#aio_tc_news h1,
#aio_tc_news h2,
#aio_tc_news h3,
#aio_tc_news h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}

.time-clock-admin-button{
  margin-top: -5px !important;
}

.vmiddle {
  vertical-align: middle;
}

.dataTables_length {
  padding: 10px;
}

.dataTables_filter {
  padding: 10px;
}

.dataTables_info {
  padding: 10px;
}

.dataTables_paginate {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.dataTables_wrapper {
  background: #FFF;
}

.reportSection {
  width: 100%;
  padding: 10px;
}

.totalRowDiv {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  background: #FFF;
}

.adminInputDate {
  min-width: 180px;
}

/* spinner */

.aio-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px;
  margin: 0px auto;
  -webkit-animation: rotation .6s infinite linear;
  -moz-animation: rotation .6s infinite linear;
  -o-animation: rotation .6s infinite linear;
  animation: rotation .6s infinite linear;
  border-left: 6px solid rgba(0, 174, 239, .15);
  border-right: 6px solid rgba(0, 174, 239, .15);
  border-bottom: 6px solid rgba(0, 174, 239, .15);
  border-top: 6px solid rgba(0, 174, 239, .8);
  border-radius: 100%;
}

/* Get Pro Page Styles */
.proDiv {
  text-align: center;
  margin-bottom: 30px;
}

.proDiv h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.proDiv i {
  font-size: 16px;
  color: #64748b;
}

.proDiv hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 15px 0;
}

.getProButton {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.getProButton a {
  display: inline-block;
}

.aio-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 10px 0;
}

@media screen and (max-width: 900px) {
  .aio-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .aio-container {
    grid-template-columns: 1fr;
  }
  .aio-item {
    height: auto;
    min-height: 320px;
  }
  .aioCardTitle {
    font-size: 18px;
  }
}

.aioCardTitle {
  font-size: 18px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: #fff;
  margin-bottom: 15px;
}

.aio-item {
  background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
  border: none;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  height: auto;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.aio-item:hover {
  background: linear-gradient(135deg, #1a5a8c 0%, #0d4a7a 100%);
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(34, 113, 177, 0.3);
}

.aio-layout-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  font-size: 30px;
  text-align: center;
}

.aioCardDescText {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.aioCardImage {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  margin: 10px 0;
}

.aio-item-row {
  width: 100%;
}

.aio-item .dashicons {
  font-size: 50px;
  padding-bottom: 40px;
}

.aio-item a {
  text-decoration: none;
  color: rgb(10, 0, 0);
}

.aio-item-link {
  text-decoration: none;
  cursor: pointer;
  color: #fff;
}

.aio-item-link:hover {
  color: #fff;
}

.disableUnderline {
  text-decoration: none !important;
}

/* Pro Feature Modal Styles */
#aio-modal-window-id {
  width: 70% !important;
  overflow-x: hidden;
  padding: 30px;
}

#aio_modal_image {
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

#aio_modal_image img {
  width: 90%;
  max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#aio_modal_title {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: #1e293b;
  text-align: center;
}

#aio_modal_description {
  width: 100%;
  padding: 20px 10px;
  text-align: center;
}

#aio_modal_description p {
  font-weight: 400;
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}

@-moz-keyframes rotation {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(359deg);
  }
}

@-o-keyframes rotation {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(359deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/*
   * Table styles
   */

table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
  /*
     * Header and footer styles
     */
  /*
     * Body styles
     */
}

table.dataTable thead th, table.dataTable tfoot th {
  font-weight: bold;
}

table.dataTable thead th, table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #98adac;
}

table.dataTable thead th:active, table.dataTable thead td:active {
  outline: none;
}

table.dataTable tfoot th, table.dataTable tfoot td {
  padding: 10px 18px 6px 18px;
  border-top: 1px solid #98adac;
}

table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center right;
}

table.dataTable thead .sorting {
  background-image: url("../images/sort_both.png");
}

table.dataTable thead .sorting_asc {
  background-image: url("../images/sort_asc.png");
}

table.dataTable thead .sorting_desc {
  background-image: url("../images/sort_desc.png");
}

table.dataTable thead .sorting_asc_disabled {
  background-image: url("../images/sort_asc_disabled.png");
}

table.dataTable thead .sorting_desc_disabled {
  background-image: url("../images/sort_desc_disabled.png");
}

table.dataTable tbody tr {
  background-color: white;
}

table.dataTable tbody tr.selected {
  background-color: #b0bed9;
}

table.dataTable tbody th, table.dataTable tbody td {
  padding: 8px 10px;
}

table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  border-top: 1px solid #dddddd;
}

table.dataTable.row-border tbody tr:first-child th, table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th, table.dataTable.display tbody tr:first-child td {
  border-top: none;
}

table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
  border-top: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}

table.dataTable.cell-border tbody tr th:first-child, table.dataTable.cell-border tbody tr td:first-child {
  border-left: 1px solid #dddddd;
}

table.dataTable.cell-border tbody tr:first-child th, table.dataTable.cell-border tbody tr:first-child td {
  border-top: none;
}

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
  background-color: #f9f9f9;
}

table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
  background-color: #abb9d3;
}

table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
  background-color: whitesmoke;
}

table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
  background-color: #a9b7d1;
}

table.dataTable.order-column tbody tr>.sorting_1, table.dataTable.order-column tbody tr>.sorting_2, table.dataTable.order-column tbody tr>.sorting_3, table.dataTable.display tbody tr>.sorting_1, table.dataTable.display tbody tr>.sorting_2, table.dataTable.display tbody tr>.sorting_3 {
  background-color: #f9f9f9;
}

table.dataTable.order-column tbody tr.selected>.sorting_1, table.dataTable.order-column tbody tr.selected>.sorting_2, table.dataTable.order-column tbody tr.selected>.sorting_3, table.dataTable.display tbody tr.selected>.sorting_1, table.dataTable.display tbody tr.selected>.sorting_2, table.dataTable.display tbody tr.selected>.sorting_3 {
  background-color: #acbad4;
}

table.dataTable.display tbody tr.odd>.sorting_1, table.dataTable.order-column.stripe tbody tr.odd>.sorting_1 {
  background-color: #f1f1f1;
}

table.dataTable.display tbody tr.odd>.sorting_2, table.dataTable.order-column.stripe tbody tr.odd>.sorting_2 {
  background-color: #f3f3f3;
}

table.dataTable.display tbody tr.odd>.sorting_3, table.dataTable.order-column.stripe tbody tr.odd>.sorting_3 {
  background-color: whitesmoke;
}

table.dataTable.display tbody tr.odd.selected>.sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_1 {
  background-color: #a6b3cd;
}

table.dataTable.display tbody tr.odd.selected>.sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_2 {
  background-color: #a7b5ce;
}

table.dataTable.display tbody tr.odd.selected>.sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected>.sorting_3 {
  background-color: #a9b6d0;
}

table.dataTable.display tbody tr.even>.sorting_1, table.dataTable.order-column.stripe tbody tr.even>.sorting_1 {
  background-color: #f9f9f9;
}

table.dataTable.display tbody tr.even>.sorting_2, table.dataTable.order-column.stripe tbody tr.even>.sorting_2 {
  background-color: #fbfbfb;
}

table.dataTable.display tbody tr.even>.sorting_3, table.dataTable.order-column.stripe tbody tr.even>.sorting_3 {
  background-color: #fdfdfd;
}

table.dataTable.display tbody tr.even.selected>.sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_1 {
  background-color: #acbad4;
}

table.dataTable.display tbody tr.even.selected>.sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_2 {
  background-color: #adbbd6;
}

table.dataTable.display tbody tr.even.selected>.sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected>.sorting_3 {
  background-color: #afbdd8;
}

table.dataTable.display tbody tr:hover>.sorting_1, table.dataTable.order-column.hover tbody tr:hover>.sorting_1 {
  background-color: #eaeaea;
}

table.dataTable.display tbody tr:hover>.sorting_2, table.dataTable.order-column.hover tbody tr:hover>.sorting_2 {
  background-color: #ebebeb;
}

table.dataTable.display tbody tr:hover>.sorting_3, table.dataTable.order-column.hover tbody tr:hover>.sorting_3 {
  background-color: #eeeeee;
}

table.dataTable.display tbody tr:hover.selected>.sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_1 {
  background-color: #a1aec7;
}

table.dataTable.display tbody tr:hover.selected>.sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_2 {
  background-color: #a2afc8;
}

table.dataTable.display tbody tr:hover.selected>.sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected>.sorting_3 {
  background-color: #a4b2cb;
}

table.dataTable.no-footer {
  border-bottom: 1px solid #98adac;
}

table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap;
}

table.dataTable.compact thead th, table.dataTable.compact thead td {
  padding: 4px 17px 4px 4px;
}

table.dataTable.compact tfoot th, table.dataTable.compact tfoot td {
  padding: 4px;
}

table.dataTable.compact tbody th, table.dataTable.compact tbody td {
  padding: 4px;
}

table.dataTable th.dt-left, table.dataTable td.dt-left {
  text-align: left;
}

table.dataTable th.dt-center, table.dataTable td.dt-center, table.dataTable td.dataTablesecho esc_attr_xmpty {
  text-align: center;
}

table.dataTable th.dt-right, table.dataTable td.dt-right {
  text-align: right;
}

table.dataTable th.dt-justify, table.dataTable td.dt-justify {
  text-align: justify;
}

table.dataTable th.dt-nowrap, table.dataTable td.dt-nowrap {
  white-space: nowrap;
}

table.dataTable thead th.dt-head-left, table.dataTable thead td.dt-head-left, table.dataTable tfoot th.dt-head-left, table.dataTable tfoot td.dt-head-left {
  text-align: left;
}

table.dataTable thead th.dt-head-center, table.dataTable thead td.dt-head-center, table.dataTable tfoot th.dt-head-center, table.dataTable tfoot td.dt-head-center {
  text-align: center;
}

table.dataTable thead th.dt-head-right, table.dataTable thead td.dt-head-right, table.dataTable tfoot th.dt-head-right, table.dataTable tfoot td.dt-head-right {
  text-align: right;
}

table.dataTable thead th.dt-head-justify, table.dataTable thead td.dt-head-justify, table.dataTable tfoot th.dt-head-justify, table.dataTable tfoot td.dt-head-justify {
  text-align: justify;
}

table.dataTable thead th.dt-head-nowrap, table.dataTable thead td.dt-head-nowrap, table.dataTable tfoot th.dt-head-nowrap, table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap;
}

table.dataTable tbody th.dt-body-left, table.dataTable tbody td.dt-body-left {
  text-align: left;
}

table.dataTable tbody th.dt-body-center, table.dataTable tbody td.dt-body-center {
  text-align: center;
}

table.dataTable tbody th.dt-body-right, table.dataTable tbody td.dt-body-right {
  text-align: right;
}

table.dataTable tbody th.dt-body-justify, table.dataTable tbody td.dt-body-justify {
  text-align: justify;
}

table.dataTable tbody th.dt-body-nowrap, table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap;
}

table.dataTable, table.dataTable th, table.dataTable td {
  box-sizing: content-box;
}

/*
   * Control feature layout
   */

.dataTables_wrapper {
  position: relative;
  clear: both;
  zoom: 1;
}

.dataTables_wrapper .dataTables_length {
  float: left;
}

.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right;
}

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0.5em;
}

.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em;
}

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  color: #6b6363 !important;
  border: 1px solid transparent;
  border-radius: 2px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #6b6363 !important;
  border: 1px solid #979797;
  background-color: white;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, gainsboro));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, white 0%, gainsboro 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, white 0%, gainsboro 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, white 0%, gainsboro 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, white 0%, gainsboro 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, white 0%, gainsboro 100%);
  /* W3C */
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #3b2f2f;
  background-color: #8a6e6e;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8a6e6e), color-stop(100%, #3b2f2f));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #8a6e6e 0%, #3b2f2f 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #8a6e6e 0%, #3b2f2f 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #8a6e6e 0%, #3b2f2f 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #8a6e6e 0%, #3b2f2f 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #8a6e6e 0%, #3b2f2f 100%);
  /* W3C */
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #574646;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #574646), color-stop(100%, #352a2a));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #574646 0%, #352a2a 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #574646 0%, #352a2a 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #574646 0%, #352a2a 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #574646 0%, #352a2a 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #574646 0%, #352a2a 100%);
  /* W3C */
  box-shadow: inset 0 0 3px #111;
}

.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em;
}

.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
  color: #6b6363;
}

.dataTables_wrapper .dataTables_scroll {
  clear: both;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  -webkit-overflow-scrolling: touch;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td {
  vertical-align: middle;
}

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th>div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td>div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th>div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td>div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #98adac;
}

.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable, .dataTables_wrapper.no-footer div.dataTables_scrollBody>table {
  border-bottom: none;
}

.hidden-item{
  display: none;
}

.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.time-clock-swal-header{
  font-size: 22px;
  line-height: .2;
  padding-bottom: 20px;

}

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em;
  }
}

@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center;
  }
  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em;
  }
}