/* ══════════════════════════════════════════════════════════════════════════════
   CONTENT GENERATOR STYLES
   Styles for Content Generator (Home) route
   ══════════════════════════════════════════════════════════════════════════════ */

/* This file will contain Content Generator specific styles */
/* For now, styles are in the main style.css file */
/* TODO: Extract and organize Content Generator specific CSS here */

/* ─── Manual Footage Upload ─── */
.manual-footage-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footage-upload-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-upload-footage {
  padding: 12px 16px;
  background: var(--bg3);
  border: 2px dashed var(--accent);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-family: inherit;
}

.btn-upload-footage:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: #2563eb;
  color: #2563eb;
}

.btn-upload-footage:active {
  transform: scale(0.98);
}

.footage-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footage-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.footage-item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}

.footage-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.footage-item-name {
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}

.footage-item-size {
  font-size: 12px;
  color: var(--text-dim);
}

.footage-item-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.footage-btn {
  padding: 6px 10px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
}

.footage-btn-replace {
  color: var(--accent);
}

.footage-btn-replace:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.footage-btn-delete {
  color: #ef4444;
}

.footage-btn-delete:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.form-hint {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
  margin-top: -4px;
}

