body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
  }
  
  .container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
  }
  
  header {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    display: inline;
    margin-left: 20px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }
  
  section {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
  }
  
  section h2 {
    color: #333;
  }
  
  section p {
    margin: 10px 0;
  }
  
  .worker-list table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .worker-list table th,
  .worker-list table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  .worker-list table th {
    background-color: #f0f0f0;
    font-weight: bold;
  }
  
  .worker-list table tr:last-child td {
    border-bottom: none;
  }
  
  /* Estilos para las tarjetas informativas */
.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    margin:15px;
  }
  
  .card h4 {
    margin-top: 0;
    color: #007bff;
  }
  
  .card p {
    font-size: 24px;
    margin: 10px 0;
  }
  
  /* Estilos para la sección de estadísticas */
  .statistics {
    display: flex;
    justify-content: space-between;
  }

/* Estilos para la tabla de membresías */
.membership-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  .membership-table th, .membership-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  .membership-table th {
    background-color: #f2f2f2;
  }
  
  .membership-table tbody tr:hover {
    background-color: #f5f5f5;
  }
  
  /* Estilos para los filtros */
  .filters {
    margin-bottom: 20px;
  }
  
  .filters label {
    margin-right: 10px;
  }