/* Keep it simple: let Bootstrap do most of the styling */
* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #f7f9fc;
}

/* Nice boxes for dynamic content */
.report-box,
.result-box {
  min-height: 220px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  background: #fff;
  overflow: auto;
  word-wrap: break-word;
}

/* Result area a bit taller on desktop */
@media (min-width: 992px) {
  .result-box {
    min-height: 420px;
  }
}

#result {
  display: flex;
  flex-direction: column;
  align-items: center;   /* centra horizontalmente */
  justify-content: center; /* centra verticalmente */
  gap: 16px;
  text-align: center;
}

#result img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

#conditionSuggestions {
  top: calc(100% + 6px);
  max-height: 180px;
  overflow-y: auto;
}


