/* Resource Editor Styles */
.resource-item {
  position: relative;
  transition: all 0.2s ease-in-out;
}

.resource-item:hover {
  transform: translateY(-2px);
}

.resource-item .document-type-icon {
  transition: all 0.3s ease-in-out;
}

/* Add a subtle animation when resources are added */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.resource-item {
  animation: slideIn 0.3s ease-out;
}
