/* WondarCore — código propio, no generado. Se puede modificar libremente. */

.yo-tipo-toggle {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.yo-tipo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.55rem 1.2rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.yo-tipo-btn input { position: absolute; opacity: 0; pointer-events: none; }

.yo-tipo-btn--active {
  border-color: #2563eb;
  color: #2563eb;
  background: #eff6ff;
}

.yo-fechas-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .yo-fechas-row { grid-template-columns: 1fr; }
}

.composer-places-search { position: relative; }

.yo-destino-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.yo-destino-chip-change {
  border: none;
  background: none;
  color: #2563eb;
  text-decoration: underline;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  min-height: 44px;
}

.yo-ubicacion-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.yo-btn-ubicacion {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.yo-ubicacion-status {
  font-size: 0.8rem;
  color: #555;
  margin: 0;
}

.yo-ubicacion-status--ok { color: #16a34a; font-weight: 600; }
.yo-ubicacion-status--off { color: #888; }
