@media screen and (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  tr {
    background: var(--color-background-primary, #fff);
    border: 0.5px solid #ccc;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
  }
  td {
    border: none;
    border-bottom: 0.5px solid #ececec;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    font-size: 13px;
  }
  td:last-child {
    border-bottom: none;
  }
  td:before {
    content: attr(data-label);
    font-size: 12px;
    color: #888;
    font-weight: 400;
    flex-shrink: 0;
    margin-right: 8px;
  }
  table.dataTable > tbody > tr > td[data-label] {
    padding-left: 14px;
  }
  .hidden-on-mobile {
    display: none;
  }
  .badge-vagas {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 500;
  }
  .badge-green { background: #EAF3DE; color: #3B6D11; }
  .badge-amber { background: #FAEEDA; color: #854F0B; }
  .badge-red   { background: #FCEBEB; color: #A32D2D; }
  
  .dt-length,
  .dt-search {
    margin-bottom: 0.75rem;
  }
  div.dt-container {
    margin-top: 1rem;
  }
  .dt-layout-row {
    margin-bottom: 0.5rem;
  }
}