/**
 * SimpleGallery 2026 - Audio Player App Stylesheet
 */

.audio-pip-wrapper {
  padding: 16px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.audio-pip-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  animation: pulseGlow 2s infinite ease-in-out;
}

.audio-pip-wrapper audio {
  width: 100%;
  outline: none;
  border-radius: 20px;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(139, 92, 246, 0.4)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.8)); }
}
