.multicel-tabla-productos {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  font-family: 'Montserrat', sans-serif;
}

.multicel-tabla-productos h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.multicel-tabla-productos .marca-titulo {
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 10px;
  color: #222;
  border-bottom: 2px solid #00c853;
  padding-bottom: 4px;
}

#buscador-tabla {
  display: block;
  margin: 0 auto 25px auto;
  padding: 10px 15px;
  width: 100%;
  max-width: 400px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tabla-listado {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.tabla-listado thead {
  background: #f0f0f0;
}

.tabla-listado th, .tabla-listado td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.tabla-listado tr:hover {
  background-color: #f9f9f9;
}

.tabla-listado td:nth-child(2) {
  font-weight: bold;
  color: #111;
}

/* Botón minimalista tipo tilde */
.btn-carrito-mini {
  display: inline-block;
  background: #00c853;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 50%;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid black;
  transition: 0.2s ease;
  line-height: 1;
  text-align: center;
}

.btn-carrito-mini:hover {
  background: #009624;
  transform: scale(1.1);
}
.tabla-top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

#buscador-tabla {
  padding: 10px 14px;
  width: 100%;
  max-width: 400px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  flex-grow: 1;
}

.btn-excel-tabla {
  background: #00c853;
  color: white;
  font-size: 20px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 2px solid black;
  text-decoration: none;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
}

.btn-excel-tabla:hover {
  background: #009624;
  transform: scale(1.05);
}


/* === Ajustes para celulares === */
@media (max-width: 576px) {
  .tabla-listado th,
  .tabla-listado td {
    font-size: 13px;
    padding: 6px;
  }

  .multicel-tabla-productos h2 {
    font-size: 20px;
  }

  .multicel-tabla-productos .marca-titulo {
    font-size: 16px;
  }

  #buscador-tabla {
    font-size: 14px;
    padding: 8px 12px;
  }

  .btn-carrito-mini {
    font-size: 11px;
    padding: 4px 6px;
    border-radius: 50%;
  }

  .btn-excel-tabla {
    font-size: 16px;
    padding: 6px 10px;
    height: auto;
  }

  .tabla-listado td:nth-child(2) {
    font-size: 13px;
  }
}

