/* temp-marker.css - العلامة الحمراء المؤقتة لمشاركة الموقع */
.temp-marker {
  background: none;
  border: none;
}

.temp-marker svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: markerPop 0.2s ease-out;
}

@keyframes markerPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
