/* camera-icon.css */
.camera-icon {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: calc(var(--z-overlay, 1000) + 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  backdrop-filter: blur(4px);
  border-radius: 50%;
  color: white;          /* force white */
  text-decoration: none;
  transition: all 0.3s ease;
}

.camera-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.camera-icon:active {
  transform: scale(0.95);
}

/* camera-icon.css */
.camera-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .camera-icon {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}