/* -------------------------------------------------------
   CAMERA PAGE — HEADER
-------------------------------------------------------- */

.camera-header {
  margin-bottom: 20px;
}

.camera-header h1 {
  margin: 0;
  font-size: 1.8rem;
}

.camera-meta {
  color: #666;
  margin-top: 4px;
  font-size: 0.95rem;
}

.camera-shared-badge {
  display: inline-block;
  background: #ff9800;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 8px;
}

.camera-shared-by {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #444;
}


/* -------------------------------------------------------
   GALLERY GRID
-------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.gallery-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  background: #f0f0f0;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}


/* -------------------------------------------------------
   IMAGE MODAL
-------------------------------------------------------- */

.image-modal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 6px;
}