/* ======================================
   NOT FOR NAVIGATION
====================================== */
.ll-notice {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 11px;
  font-weight: 600;

  color: #000;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 6px rgba(255,255,255,0.9);

  z-index: 1000;
}

.ll-navionics-attribution {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  z-index: 1000;
}

/* ======================================
   COORD BAR
====================================== */

.ll-coordbar {
  position: absolute;
  top: 6px;
  left: 50%;

  translate: -50% 0;

  z-index: 500;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 8px 12px;
  border-radius: 10px;

  background: rgba(0, 0, 0, 0.7);

  backdrop-filter: blur(6px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: #fff;
  font-size: 12px;

  font-family: "Poppins", sans-serif;
}

.ll-coordbar-text {
  min-width: 160px;
  white-space: nowrap;
}

.ll-coordbar-btn {
  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.25);

  color: #fff;

  border-radius: 8px;

  padding: 4px 8px;

  cursor: pointer;

  font-size: 12px;
}

.ll-coordbar-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ======================================
   MAP LOGO
====================================== */

.ll-map-logo {
  position: absolute;

  left: 5px;
  bottom: 5px;

  z-index: 900;

}

.ll-map-logo img {
  height: 30px;
  width: auto;

  display: block;
}

/* ======================================
   ZOOM MESSAGE
====================================== */
.map-zoom-message {

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  z-index: 1000;

  text-align: center;
  pointer-events: none; /* important so map still works */
}

/* =========================================
   Tactical Map Modal
========================================= */

.map-modal .modal-content {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.map-modal .modal-header {
  background: #1e1e1e;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-modal .modal-body {
  font-size: 14px;
  line-height: 1.3;
}

.map-modal .map-info-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}

.map-modal .map-info-row:last-child {
  border-bottom: none;
}

.map-modal .map-label {
  color: #6c757d;
}

.map-modal .map-value {
  font-weight: 600;
}

.map-modal .map-actions {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.map-modal .btn-close {
  opacity: 0.9;
}

.map-modal .btn-close:hover {
  opacity: 1;
}
