/* Additional CSS for video section placeholders and error states */

.no-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  text-align: center;
  color: #6c757d;
  min-height: 315px;
}

.no-video-placeholder i {
  margin-bottom: 15px;
  color: #adb5bd;
}

.no-video-placeholder p {
  margin: 10px 0 5px 0;
  font-weight: 500;
  font-size: 16px;
}

.no-video-placeholder small {
  font-size: 14px;
  color: #868e96;
}

.video-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #fff5f5;
  border: 2px solid #fed7d7;
  border-radius: 8px;
  text-align: center;
  color: #e53e3e;
  min-height: 315px;
}

.video-error i {
  margin-bottom: 15px;
  font-size: 2rem;
}

.video-error p {
  margin: 10px 0 5px 0;
  font-weight: 500;
  font-size: 16px;
}

.video-error small {
  font-size: 12px;
  color: #a0a0a0;
  word-break: break-all;
  max-width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-container {
    flex-direction: column;
  }

  .video-column {
    margin-bottom: 30px;
  }

  .no-video-placeholder,
  .video-error {
    min-height: 250px;
    padding: 30px 15px;
  }
}
