.bunny-uploader {
  text-align: center;
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
  background: #f9fafb;
  border-radius: 14px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}
.upload-btn {
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s, opacity 0.2s;
}
.upload-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
#bunnyProgressContainer {
  width: 100%;
  height: 10px;
  background: #eee;
  border-radius: 6px;
  margin-top: 15px;
  overflow: hidden;
}
#bunnyProgressBar {
  height: 100%;
  width: 0%;
  background: #4CAF50;
  transition: width 0.3s ease;
}
#bunnyStatus {
  margin-top: 12px;
  font-size: 15px;
  color: #333;
}
