/* Video loading indicator styles */
.video-loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.video-loading-overlay {
  background-color: white;
  border-radius: 12px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.video-loading-content h3 {
  margin: 0 0 15px 0;
  color: #3a5eff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.5rem;
}

.video-loading-content p {
  margin-bottom: 20px;
  color: #555;
}

.video-loading-progress-container {
  height: 12px;
  background-color: #f1f1f1;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 20px;
}

.video-loading-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #4a6eff, #2ecc71);
  border-radius: 6px;
  transition: width 0.3s ease;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.video-loading-content h3 i {
  color: #3a5eff;
  animation: pulse 2s infinite;
}