/* Contenido de productos_styles.css */
/* Estilos para tablas */
.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(21,101,192,0.10);
    font-family: 'Segoe UI', Arial, sans-serif;
    margin-bottom: 30px;
}
.modern-table th, .modern-table td {
    padding: 16px 18px;
    text-align: left;
    font-size: 1em;
    border-bottom: 1px solid #717fe0;
}
.modern-table th.table-title {
    background: linear-gradient(90deg, #717fe0 60%, #42a5f5 100%);
    color: #fff;
    font-size: 1.4em;
    letter-spacing: 1px;
    border-bottom: 3px solid #717fe0;
    text-align: center;
}
.modern-table tr:last-child td {
    border-bottom: none;
}
.modern-table tr:nth-child(even) td {
    background: #7180e011;
}
.modern-table tr:hover td {
    background: #e3f2fd;
    transition: background 0.2s;
}
.modern-table td:first-child, .modern-table td:nth-child(3) {
    font-weight: 600;
    color: #1565c0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
    .boton-marca {
      display: inline-block;
      margin: 1px;
      padding: 1px 6px;
      background-color: #00000048; /* Morado */
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 12px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    .boton-marca:hover {
      background-color: #3f2af9b0; /* Morado más oscuro */
    }

    .fondo-div {
      width: 100%;
      background-size: cover;     /* Cubre todo el div sin distorsionar */
      background-position: center; /* Centra la imagen */
      background-repeat: no-repeat; /* No repetir la imagen */
      color: white;
      display: flex;
      align-items: center;
    
     /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);*/
    }