#awb-chat {
  max-width: 600px;
  margin: 2rem auto;
}
#awb-input {
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
}
#awb-generate {
  padding: 10px 20px;
}
#awb-status {
  margin-top: 15px;
  font-weight: bold;
}

.loader {
  font-weight: bold;
  font-size: 1.2rem;
  color: #444;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

#awb‑gallery‑results img {
  width:100%;
  height:auto;
  cursor:pointer;
  border:2px solid transparent;
  transition:border-color 0.3s;
}
#awb‑gallery‑results img:hover {
  border-color:#0073aa;
}