/* ✅ تأكيد على هيكل الصفحة */


#map {
  width: 100%;
  height: 100%;
}

/* ✅ ماركر نابض */
.pulse {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0071E3;
  box-shadow: 0 0 6px 3px #0071E3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,113,227,0.9); }
  70%  { box-shadow: 0 0 20px 15px rgba(0,113,227,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,113,227,0); }
}

/* ✅ Popup تنسيق */
.mapboxgl-popup {
  color: #fff;
  background: #15224f;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}



/* ✅ خطوط الشبكة */
.mapboxgl-canvas path {
  pointer-events: none !important;
}


/* تخصيص popup بالكامل */
.mapboxgl-popup-content {
  background: #0c1e4a !important;
  color: white !important;
  border-radius: 10px;
  padding: 14px 18px;
  font-family: system-ui, Arial, sans-serif;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.mapboxgl-popup-content h3 {
  margin: 0 0 5px;
  font-size: 16px !important;
  color: #fff !important;
  font-weight: 600;
}

.mapboxgl-popup-content p {
  margin: 0;
  font-size: 13px;
  color: #d1d5db;
}

/* تخصيص زر الإغلاق */
.mapboxgl-popup-close-button {
  background: #0071E3 !important;
  color: white !important;
  border-radius: 0 8px 0 8px;
  padding: 2px 10px;
  font-size: 16px;
  top: 0;
  right: 0;
}

#map-container:focus {
  outline: none;
}


.map-logo-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  padding: 6px;
  opacity: 0.6;
}

.map-logo-overlay img {
  max-height: 42px;
  display: block;
  filter: brightness(0) invert(1); /* يجعل اللوجو أبيض */
}

