  .container {
    display: flex;
    justify-content: center;
  }

  .table-responsive {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
  }

  .table {
    width: 100%;
    margin-bottom: 0;
  }

  .column-header {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
    position: relative;
    z-index: 1;
  }

  .column-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-color: #007bff;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .column-header:hover:before,
  .column-header.active:before {
    opacity: 2;
  }

  /* Ajuste para mejorar la legibilidad */
  .column-header:focus {
    outline: none;
    background-color: #0056b3;
  }

  /* Estilo para los encabezados de la tabla */
th {
  background-color: #f2f2f2;
  padding: 8px;
  text-align: left;
  border-radius: 8px;
}

/* Estilo para los encabezados de la tabla cuando se les hace clic */
th:hover {
  background-color: #e0e0e0;
}

/* Estilo para los encabezados de la tabla cuando se les pasa el mouse por encima */
th:focus {
  background-color: #e0e0e0;
  outline: none;
}

  .container-search {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .container-search .form-group {
    margin-bottom: 10px;
    margin-left: 10px;
  }

  .search-button {
    margin-top: 10px; /* Ajusta el valor según sea necesario */
    margin-bottom: 10px; /* Ajusta el valor según sea necesario */
    font-size: 14px; /* Ajusta el tamaño de fuente según sea necesario */
    padding: 5px 10px; /* Ajusta el relleno según sea necesario */
  }

  .search-container {
    width: 100%;
    max-width: 500px;
  }

  .search-container form {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-container .form-label {
    margin-bottom: 0;
  }

  .search-container .input-group {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .search-container .light-table-filter {
    max-width: 100%;
    width: 300px; /* Ajusta el ancho según sea necesario */
    padding: 6px 10px; /* Ajusta el relleno según sea necesario */
    font-size: 14px; /* Ajusta el tamaño de fuente según sea necesario */
  }

  .date-input {
    display: flex;
    justify-content: center;
  }

  .date-input .input-group-text {
    white-space: nowrap;
  }
