
/* CONTENEDOR GENERAL */
#selleator-app form,
#selleator-mapa,
.selleator-contenedor {
  max-width: 100%;
  margin: auto;
}

/* FILTROS */
#selleator-app form {
  background: #e6f2fa;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-family: system-ui, sans-serif;
}

#selleator-app label {
  margin-right: 10px;
  font-size: 14px;
}

/* TARJETAS */
.selleator-contenedor {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.selleator-card {
  background: #fff;
  border: 2px solid #0073aa;
  border-left: 6px solid #0073aa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  position: relative;
  font-family: system-ui, sans-serif;
}

.selleator-card h2 {
  color: #0073aa;
  margin-top: 0;
  font-size: 20px;
  font-weight: 600;
}

/* TEXTOS */
.selleator-card p {
  margin: 6px 0;
  font-size: 15px;
  line-height: 1.6;
}

/* RATINGS */
.selleator-card .rating-block {
  position: absolute;
  top: 20px;
  right: 20px;
  text-align: right;
}

.selleator-card .rating-block span {
  display: inline-block;
  margin-left: 6px;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
}

.selleator-rating-trip {
  background: #0073aa;
  color: white;
}

.selleator-rating-google {
  background: #34a853;
  color: white;
}

/* ENLACES */
.selleator-card a {
  color: inherit;
  text-decoration: underline;
}


.selleator-rating-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 5px 0;
  font-size: 15px;
}

.selleator-rating-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: bold;
  color: white;
}

.selleator-rating-trip {
  background-color: #0d6efd;
}

.selleator-rating-google {
  background-color: #28a745;
}


.selleator-review-block {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.selleator-review-block a {
  display: flex;
  align-items: center;
  background: #f0f8ff;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  color: #0073aa;
}

.selleator-review-block a.google {
  background: #e6f4ea;
  color: #1e8449;
}

.selleator-review-block span.badge {
  display: inline-block;
  background: #0073e6;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  padding: 2px 8px;
  margin-right: 8px;
}

.selleator-review-block a.google span.badge {
  background: #34a853;
}
