.cloned-voice-player {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  min-width: 300px;
  animation: voice-addon-slide-in 0.3s ease;
}

@keyframes voice-addon-slide-in {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cloned-voice-player .player-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.cloned-voice-player .close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.cloned-voice-player .close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cloned-voice-player audio {
  width: 100%;
  margin-top: 10px;
}

.voice-processing-indicator {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10000;
  animation: voice-addon-slide-down 0.3s ease;
}

@keyframes voice-addon-slide-down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.voice-processing-indicator .spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #667eea;
  border-radius: 50%;
  animation: voice-addon-spin 1s linear infinite;
}

@keyframes voice-addon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  z-index: 10001;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-success {
  background: linear-gradient(135deg, #00b09b, #96c93d);
}

.notification-error {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}
