/* bumper_ui.css — Styles for the bumper profile dropdown in snippet action rows.
 * Loaded globally in index.hbs alongside quality_ui.css.
 */

/* ---------------------------------------------------------------------------
   Bumper profile select — styled to match .btn-primary weight
   --------------------------------------------------------------------------- */

.bumper-profile-select {
  /* Layout */
  padding: 0.3rem 1.75rem 0.3rem 0.85rem; /* right padding leaves room for caret */
  min-width: 8rem;
  max-width: 12rem;
  align-self: center;
  margin-right: auto; /* pushes Download MP4 to far right of actions row */

  /* Typography */
  font-size: 0.8rem;
  font-weight: 500;
  font-family: inherit;
  color: white;
  letter-spacing: 0.01em;

  /* Appearance — override native select chrome */
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;

  /* Blue body + white downward chevron on the right */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='white'/%3E%3C/svg%3E") right 0.55rem center no-repeat, var(--ebay-blue);

  /* Shadow matches .btn-primary */
  box-shadow: 0 2px 8px rgba(10,167,255,0.30);

  transition: all 0.2s cubic-bezier(0.2, 0, 0, 1);
}

.bumper-profile-select:hover {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='white'/%3E%3C/svg%3E") right 0.55rem center no-repeat, var(--ebay-blue-dark);
  box-shadow: 0 4px 12px rgba(10,167,255,0.40);
  transform: translateY(-1px);
}

.bumper-profile-select:focus {
  outline: 2px solid rgba(255,255,255,0.7);
  outline-offset: 1px;
}

/* Expanded option list: readable on white browser chrome */
.bumper-profile-select option {
  color: var(--text, #111);
  background: white;
}
