/* you.bid Virtual Auctioneer Frontend Styles */
#ybva-auctioneer-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 220px;
  height: 320px;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  transition: box-shadow 0.3s, background 0.3s;
}
#ybva-auctioneer-container:focus-within, #ybva-auctioneer-container:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  background: #fff;
}

#ybva-lottie-avatar {
  width: 180px;
  height: 180px;
  margin: 0 auto 8px auto;
  background: transparent;
  display: block;
  position: relative;
}

#ybva-auctioneer-container h3 {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.2em;
  color: #222;
  margin-bottom: 8px;
}

#ybva-auctioneer-container div {
  font-family: 'Segoe UI', Arial, sans-serif;
}

.ybva-auctioneer-subtitle {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1em;
  color: #007c3e;
  background: #eaffea;
  border-radius: 6px;
  padding: 6px 12px;
  margin: 8px 0 0 0;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  animation: ybva-fadein 0.5s;
  outline: none;
}
@keyframes ybva-fadein {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.ybva-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border: 4px solid #e0e0e0;
  border-top: 4px solid #007c3e;
  border-radius: 50%;
  animation: ybva-spin 1s linear infinite;
  z-index: 2;
}
@keyframes ybva-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.ybva-auctioneer-subtitle[role="status"] {
  aria-live: polite;
} 