/* ============================================================
   CCM-MAP-MARKERS.CSS — shared marker shapes for Leaflet maps
   ------------------------------------------------------------
   Colours live in ccm-map-markers.js (CCM_MARKERS.COLORS) and are
   injected inline by that file; this stylesheet only defines shape,
   size and border — never a colour.
   ============================================================ */

.ccm-marker-turn {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  width: 22px; height: 22px;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  cursor: pointer;
  position: relative;
}
.ccm-marker-turn-arrow { font-size: 15px; color: #fff; line-height: 1; }
.ccm-marker-turn-label { display: none; }

.ccm-marker-hall {
  font-size: 22px; line-height: 28px; text-align: center;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
  cursor: pointer;
}
