.card-table {
  width: 100%;
  border-collapse: collapse;
}

.card-table th,
.card-table td {
  padding: 0.75rem;
  border: 1px solid #ccc;
  text-align: left;
}

.card-table thead {
  background-color: #f4f4f4;
}

/* --- Estilo responsivo tipo cartão --- */
@media (max-width: 768px) {
  .card-table thead {
    display: none; /* Esconde o cabeçalho */
  }

  .card-table,
  .card-table tbody,
  .card-table tr,
  .card-table td {
    display: block;
    width: 100%;
  }

  .card-table tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem;
    background-color: #fafafa;
  }

  .card-table td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }

  .card-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0.75rem;
    top: 0.5rem;
    width: 45%;
    padding-right: 1rem;
    font-weight: bold;
    white-space: nowrap;
    color: #333;
  }
}