/* === Estilo base de la tabla === */

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* === Cabecera === */

.table thead {
  background-color: #4CAF50;
  color: white;
}

.table th {
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 15px;
  text-align: center;
}

/* === Celdas === */

.table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

/* === Hover filas === */

.table tbody tr:hover td {
  background-color: #f2f2f2;
  transition: background-color 0.3s ease;
}

/* === Enlaces === */

.table a {
  color: #4CAF50;
  font-weight: bold;
  text-decoration: none;
}

.table a:hover {
  text-decoration: underline;
}

