.wscraper-container {
  max-width: 960px;
  margin: 20px auto;
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
}

.wscraper-input {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

#wscraper-url {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

#wscraper-fetch {
  padding: 10px 20px;
  background-color: #ff7b00;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

#wscraper-fetch:hover {
  background-color: #000000;
}
.assign-markup{

  width: 100px;
    margin-left: 13px !important;
}
.assign-threshold{
  width: 100px;
    margin-left: 20px !important;
}
.wscraper-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 20px;
  margin-bottom: 20px;
  margin-right:5px;
  margin-left:5px;
}

.wscraper-img {
  width: 100%;
  max-width: 220px;
  border-radius: 8px;
  align-self: center;
  margin-bottom: 15px;
}

.wscraper-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wscraper-details h3 {
  margin: 0;
  color: #222;
  font-size: 20px;
}

.wscraper-details p {
  margin: 4px 0;
  font-size: 15px;
}

.price-real {
  font-size: 25px;
  color: #c0392b;
  text-align: center;
  font-weight: bold;
  background: #ffeaea;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

.price-final {
  font-size: 18px;
  color: #27ae60;
  font-weight: bold;
  background: #eaffea;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

.markup-input,
.threshold-input {
  width: 70px;
  padding: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.wscraper-card button {
  background-color: #000000;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  margin: 6px 6px 0 0;
  font-size: 14px;
  transition: 0.2s;
  font-weight: bold;
}

.wscraper-card button:hover {
  background-color: #35393b;
}

/* Botones especiales */
.wscraper-card .wscraper-reject {
  background-color: #dc3545;
}

.wscraper-card .wscraper-reject:hover {
  background-color: #a71d2a;
}

.wscraper-card .wscraper-accept {
  background-color: #28a745;
}

.wscraper-card .wscraper-accept:hover {
  background-color: #218838;
}

.wscraper-card .wscraper-toggle-auto {
  background-color: #ff9307;
  color: #222;
}

.wscraper-card .wscraper-toggle-auto:hover {
  background-color: #e0a800;
}


