/* Multimedia Modal - Diseño Visual Mejorado */

/* Main Container */
.multimedia-main,
.multimedia-create {
  padding: 20px;
}

.multimedia-create.hidden {
  display: none;
}

/* Hero Section */
.multimedia-hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  color: white;
  margin-bottom: 30px;
}

.hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 20px;
}

.hero-icon svg {
  stroke: white;
}

.multimedia-hero h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: white;
}

.multimedia-hero p {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Create Cards - ELIMINADO */

/* Rules Section */
.rules-section {
  margin-top: 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.section-header h4 {
  font-size: 11px;
  font-weight: normal;
  margin: 0;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.rules-counter {
  font-size: 10px;
  color: var(--color-text-tertiary);
  background: transparent;
  padding: 0;
  border: none;
}

/* Rules List Container */
.rules-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 60px;
  padding: 4px 0;
}

.empty-rules {
  text-align: center;
  padding: 48px 20px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  border-radius: 16px;
  border: 2px dashed #cbd5e0;
  margin-top: 12px;
}

.empty-rules svg {
  width: 64px;
  height: 64px;
  stroke: #a0aec0;
  margin-bottom: 16px;
}

.empty-rules h4 {
  display: none;
}

.empty-rules p {
  font-size: 11px;
  color: var(--color-text-tertiary);
  margin: 0;
}

/* Create Form View */
.multimedia-create {
  max-width: 800px;
  margin: 0 auto;
}

.create-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.btn-back {
  width: 28px;
  height: 28px;
  border-radius: 2px;
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: none;
}

.btn-back:hover {
  border-color: var(--color-text);
  color: var(--color-text);
}

.create-title {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.title-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.title-icon svg {
  stroke: white;
}

.create-title h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #1a202c;
}

.create-title p {
  font-size: 14px;
  color: #718096;
  margin: 0;
}

/* Form Sections */
.create-form .form-section {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 24px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.section-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-icon svg {
  stroke: white;
}

.section-content {
  flex: 1;
}

.section-content label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 12px;
}

.big-input,
.big-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.big-input:focus,
.big-textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.big-textarea {
  resize: vertical;
  min-height: 60px;
}

/* Input Help */
.input-help {
  margin-top: 12px;
}

.help-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.example-tag {
  padding: 6px 12px;
  background: #f0f4ff;
  color: #667eea;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.example-tag:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

/* Upload Zone */
.upload-zone {
  border: 2px dashed #cbd5e0;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f7fafc;
  position: relative;
}

.upload-zone:hover {
  border-color: #667eea;
  background: #f0f4ff;
}

.upload-content {
  pointer-events: none;
}

.upload-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  margin-bottom: 16px;
}

.upload-icon svg {
  stroke: #667eea;
}

.upload-zone h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #1a202c;
}

.upload-zone p {
  font-size: 14px;
  color: #718096;
  margin: 0 0 8px 0;
}

.size-limit {
  font-size: 12px;
  color: #a0aec0;
}

.upload-content.hidden {
  display: none;
}

/* File Preview */
.file-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 2px solid #667eea;
  border-radius: 12px;
}

.file-preview.hidden {
  display: none;
}

.preview-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.preview-icon svg {
  stroke: white;
}

.preview-info {
  flex: 1;
}

.preview-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #1a202c;
}

.preview-info p {
  font-size: 12px;
  color: #718096;
  margin: 0;
}

.remove-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.remove-btn:hover {
  border-color: #fc8181;
  background: #fff5f5;
}

.remove-btn svg {
  stroke: #fc8181;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 30px;
  border-top: 2px solid #e2e8f0;
}

.btn-cancel {
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: white;
  color: #718096;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cancel:hover {
  border-color: #cbd5e0;
  background: #f7fafc;
}

.btn-save {
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-save:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.btn-save:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-save svg {
  stroke: white;
}

/* Rule Card - Lista limpia y alineada */
.rule-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 20px;
  background: white;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
  transition: background 0.15s ease;
}

.rule-card:last-child {
  border-bottom: none;
}

.rule-card:hover {
  background: #fafbfc;
}

.rule-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.rule-header {
  width: 200px;
  flex-shrink: 0;
}

.rule-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: #2d3748;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rule-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  flex: 1;
  min-width: 150px;
}

.keyword-tag {
  padding: 4px 10px;
  background: #f7fafc;
  color: #4a5568;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e8edf2;
  white-space: nowrap;
}

.rule-link {
  display: block;
  font-size: 12px;
  color: #718096;
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
  width: 320px;
  flex-shrink: 0;
  text-align: left;
}

.rule-link span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rule-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.rule-card:hover .rule-actions {
  opacity: 1;
}

.rule-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  padding: 0;
}

.rule-btn:active {
  transform: scale(0.95);
}

.rule-btn:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
}

.rule-toggle-btn svg {
  stroke: #4a5568;
  width: 16px;
  height: 16px;
}

.rule-btn-danger svg {
  stroke: #718096;
  width: 16px;
  height: 16px;
}

.rule-btn-danger:hover svg {
  stroke: #fc8181;
}

.rule-card.disabled {
  opacity: 0.5;
}

.rule-card.disabled .rule-info h4 {
  color: #a0aec0;
  text-decoration: line-through;
}

.rule-card.disabled .keyword-tag {
  border-color: #e2e8f0;
  color: #a0aec0;
}

/* Hero Section */
.multimedia-hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  color: white;
  margin-bottom: 30px;
}

.hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 20px;
}

.hero-icon svg {
  stroke: white;
}

.multimedia-hero h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: white;
}

.multimedia-hero p {
  font-size: 16px;
  margin: 0;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Create Cards Grid */
.create-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.create-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.create-card:hover {
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.create-card:hover .card-icon {
  transform: scale(1.1);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.card-icon svg {
  stroke: white;
}

.create-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: #1a202c;
}

.create-card p {
  font-size: 14px;
  color: #718096;
  margin: 0 0 12px 0;
}

.card-example {
  font-size: 12px;
  color: #667eea;
  background: #f0f4ff;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
}

/* Rules Section */
.rules-section {
  margin-top: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #1a202c;
}

.rules-counter {
  font-size: 14px;
  color: #718096;
  background: #f7fafc;
  padding: 6px 16px;
  border-radius: 20px;
}

.rules-list {
  min-height: 200px;
}

.empty-rules {
  text-align: center;
  padding: 60px 20px;
  background: #f7fafc;
  border-radius: 12px;
  border: 2px dashed #cbd5e0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: 12px;
  min-height: 200px;
}

.empty-icon {
  font-size: 64px;
  margin-bottom: var(--space-md);
  opacity: 0.3;
}

.multimedia-empty p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-size: 16px;
}

.btn-create-first {
  padding: 10px 20px;
  border-radius: 6px;
}

/* Rule Card - Eliminando franjas */
.multimedia-rule-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all var(--transition);
}

.multimedia-rule-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rule-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rule-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.rule-card-status {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.rule-card-status.active {
  background: #dcfce7;
  color: #16a34a;
}

.rule-card-status.inactive {
  background: #f3f4f6;
  color: var(--color-text-tertiary);
}

.rule-card-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.keyword-tag {
  padding: 2px 6px;
  background: var(--color-bg-secondary);
  border-radius: 4px;
  font-size: 11px;
  color: var(--color-text-secondary);
  font-family: monospace;
}

.rule-card-file {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs);
  background: var(--color-bg);
  border-radius: 4px;
}

.rule-file-icon {
  font-size: 16px;
}

.rule-file-name {
  font-size: 12px;
  color: var(--color-text-secondary);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rule-card-actions {
  display: flex;
  gap: var(--space-xs);
  justify-content: flex-end;
}

/* Steps Form */
.rule-form-steps {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

.steps-header {
  padding: var(--space-lg);
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}

.steps-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.steps-progress {
  display: flex;
  gap: var(--space-md);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  flex: 1;
  opacity: 0.5;
  transition: all var(--transition);
}

.step.active {
  opacity: 1;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-secondary);
  transition: all var(--transition);
}

.step.active .step-number {
  background: var(--color-primary);
  color: white;
}

.step span {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.step.active span {
  color: var(--color-text);
}

/* Steps Content */
.steps-content {
  padding: var(--space-lg);
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-xl);
  align-items: start;
}

.step-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.step-right {
  position: sticky;
  top: var(--space-md);
}

.step-preview {
  padding: var(--space-lg);
  background: var(--color-bg-secondary);
  border-radius: 8px;
  text-align: center;
}

.preview-icon {
  font-size: 48px;
  margin-bottom: var(--space-md);
}

.step-preview p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.preview-tip {
  padding: var(--space-sm);
  background: var(--color-bg);
  border-radius: 4px;
  font-size: 12px;
  color: var(--color-text-tertiary);
}

/* File Types Grid */
.file-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.file-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  cursor: pointer;
  transition: none;
}

.file-type-card:hover {
  border-color: var(--color-text);
}

.file-type-card.selected {
  border-color: var(--color-text);
  background: transparent;
}

.file-type-icon {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--color-text-tertiary);
}

.file-type-name {
  font-weight: normal;
  font-size: 11px;
  margin-bottom: 2px;
  color: var(--color-text);
}

.file-type-hint {
  font-size: 10px;
  color: var(--color-text-tertiary);
}

/* File Upload Zone */
.file-upload-zone {
  margin-top: var(--space-md);
}

.file-upload-zone input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px dashed var(--color-border);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: none;
  min-height: 80px;
}

.upload-placeholder:hover {
  border-color: var(--color-text);
}

.upload-icon {
  margin-bottom: 8px;
  color: var(--color-text-tertiary);
}

.upload-icon svg {
  width: 24px;
  height: 24px;
}

.upload-placeholder p {
  font-size: 11px;
  color: var(--color-text-secondary);
  margin: 0 0 4px 0;
}

.upload-placeholder small {
  font-size: 10px;
  color: var(--color-text-tertiary);
  margin: 0;
}

/* File Preview Zone */
.file-preview-zone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2px;
}

.file-preview-card {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.file-icon {
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-text-tertiary);
}

.file-info {
  flex: 1;
}

.file-name {
  font-size: 11px;
  font-weight: normal;
  color: var(--color-text);
  margin: 0 0 2px 0;
}

.file-size {
  font-size: 10px;
  color: var(--color-text-tertiary);
  margin: 0;
}

.file-remove {
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  color: var(--color-text-tertiary);
  font-size: 16px;
  cursor: pointer;
  border-radius: 0;
  transition: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-remove:hover {
  color: var(--color-text);
}

/* Configuration Options */
.config-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.config-option {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: 8px;
}

.option-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.option-content {
  flex: 1;
}

.option-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.option-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: white;
  font-size: 13px;
}

.toggle-switch {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

.toggle-slider {
  width: 40px;
  height: 20px;
  background: var(--color-bg-tertiary);
  border-radius: 20px;
  position: relative;
  transition: all var(--transition);
}

.toggle-slider::before {
  content: '';
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--color-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input {
  display: none;
}

.toggle-label {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* Final Preview */
.final-preview h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.preview-summary {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  text-align: left;
}

.summary-item {
  font-size: 13px;
  color: var(--color-text-secondary);
}

.summary-item strong {
  color: var(--color-text);
}

/* Steps Actions */
.steps-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: space-between;
  padding: var(--space-lg);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.steps-actions .btn-secondary {
  padding: 10px 20px;
}

.steps-actions .btn-primary {
  padding: 10px 20px;
}

.save-icon {
  margin-right: var(--space-xs);
}

/* Responsive */
@media (max-width: 768px) {
  .multimedia-intro {
    flex-direction: column;
    text-align: center;
  }
  
  .multimedia-examples {
    grid-template-columns: 1fr;
  }
  
  .step-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .steps-progress {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .step {
    flex-direction: row;
    justify-content: center;
  }
  
  .file-types-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-actions {
    flex-direction: column;
  }
}
