/* Videos Page Specific Styles */

/* Video library styling */
.video-library {
  /* Inherits from base card styles */
}

/* Video card enhancements */
.video-card {
  position: relative;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 200px;
  background: var(--gray-200);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.video-thumbnail::before {
  content: '';
  font-size: 2rem;
}

/* Video player styling */
.video-player {
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Upload center styling */
.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.upload-zone:hover {
  border-color: var(--primary-green);
  background: var(--light-green);
}

.upload-zone.dragover {
  border-color: var(--primary-green);
  background: var(--light-green);
  transform: scale(1.02);
}

/* Video status indicators */
.video-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.video-status::before {
  content: '';
  font-size: 1.2rem;
}

/* Video progress bar */
.video-progress {
  background: var(--gray-200);
  border-radius: 4px;
  height: 6px;
  margin: 0.5rem 0;
  overflow: hidden;
}

.video-progress-bar {
  background: var(--brand-primary);
  height: 100%;
  transition: width 0.3s ease;
}

/* Video mobile responsive */
@media (max-width: 768px) {
  .video-thumbnail {
    height: 150px;
  }
  
  .upload-zone {
    padding: 1.5rem;
  }
}
