/**
 * Collection Import/Export Styles
 */

.collection-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.file-upload-area {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: #007bff;
  background-color: #e7f3ff;
}

.file-upload-label {
  cursor: pointer;
  display: block;
  margin: 0;
}

.file-upload-label i {
  color: #6c757d;
  transition: color 0.3s ease;
}

.file-upload-area:hover .file-upload-label i {
  color: #007bff;
}

.import-step {
  min-height: 300px;
}

.validation-summary .alert {
  margin-bottom: 15px;
}

.status-breakdown {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.badge-lg {
  font-size: 0.95rem;
  padding: 8px 12px;
}

.preview-table {
  max-height: 300px;
  overflow-y: auto;
}

.import-mode {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
}

.import-mode .form-check {
  margin-bottom: 10px;
}

.format-help {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#validation-errors {
  max-height: 200px;
  overflow-y: auto;
}

#validation-errors ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.modal-lg {
  max-width: 800px;
}

@media (max-width: 768px) {
  .collection-actions {
    flex-direction: column;
  }
  
  .collection-actions button {
    width: 100%;
  }
  
  .status-breakdown {
    flex-direction: column;
  }
  
  .badge-lg {
    width: 100%;
    text-align: center;
  }
}
