.victoria-audio-player {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: #f9fafb;
  border-radius: 12px; border: 1px solid #e5e7eb; max-width: 100%; font-family: system-ui, sans-serif;
}
.vap-play {
  width: 44px; height: 44px; border: none; border-radius: 50%; flex-shrink: 0; cursor: pointer;
  background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899); color: #fff; font-size: 1rem;
}
.vap-wave { flex: 1; min-width: 0; display: flex; align-items: center; gap: 2px; height: 32px; }
.vap-bar { width: 3px; background: #c4b5fd; border-radius: 2px; transition: height 0.1s; }
.vap-bar.active { background: #6366f1; }
.vap-scrub { width: 100%; margin: 4px 0; accent-color: #6366f1; }
.vap-time { font-size: 0.7rem; color: #6b7280; display: flex; justify-content: space-between; }
.vap-actions { display: flex; gap: 4px; flex-shrink: 0; }
.vap-actions button { border: none; background: #eef2ff; color: #4338ca; border-radius: 8px; padding: 6px 8px; cursor: pointer; min-width: 36px; min-height: 36px; font-size: 0.75rem; }
.vap-loading { color: #6b7280; font-size: 0.85rem; }
