/* Remover estilos de células e cabeçalhos */
table.dataTable {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  table.dataTable th,
  table.dataTable td {
    padding: 8px 10px;
    border-bottom: none;
    border-top: none;
    border-right: none;
    border-left: none;
    text-align: left;
  }
  
  table.dataTable thead th,
  table.dataTable tfoot th {
    font-weight: bold;
  }
  
  table.dataTable tbody th,
  table.dataTable tbody td {
    padding: 8px 10px;
  }
  
  /* Manter o estilo de ordenação */
  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") !important;
  }
  
  table.dataTable thead .sorting_desc {
    background-image: url("../images/sort_desc.png") !important;
  }
  
  /* Control feature layout */
  .dataTables_wrapper {
    position: relative;
    clear: both;
  }
  
  .dataTables_wrapper .dataTables_length {
    float: left;
    margin-bottom: 10px;
    margin-top: 30px;
    
  }
  
  .dataTables_wrapper .dataTables_filter {
    float: right;
    margin-bottom: 10px;
    margin-top: 30px;
    text-align: right;
  }
  
  .dataTables_wrapper .dataTables_filter input {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
    background-color: transparent;
    margin-left: 3px;
  }
  
  .dataTables_wrapper .dataTables_info {
    clear: both;
    float: left;
    padding-top: 0.755em;
    margin-top: 15px;
  }
  
  .dataTables_wrapper .dataTables_paginate {
    float: right;
    text-align: right;
    padding-top: 0.25em;
    margin-top: 15px;
  }
  
  .dataTables_wrapper .dataTables_paginate .paginate_button {
    display: inline-block;
    padding: 6px 12px;
    margin-left: 5px;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
  }
  
  .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #0056b3;
  }
  
  .dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #0056b3;
    font-weight: bold;
  }
  
  .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    cursor: default;
    color: #666 !important;
    border: 1px solid transparent;
    background: transparent;
    box-shadow: none;
  }
  
  .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;
  }
  
  /* Responsividade */
  @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;
    }
  }
  