/* iNaturalist Photo Component Styles */

.inaturalist-photo-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.inaturalist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in;
}

.inaturalist-photo-placeholder {
  color: #adb5bd;
  font-size: 48px;
}

.inaturalist-photo-loading {
  display: flex;
  align-items: center;
  justify-content: center;
}

