.map_pointer_circle {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #2FB7DA; /* Aqua */
  border-radius: 50%;
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 6px 2px rgba(47,183,218,0.6);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.map_pointer_circle:hover,
.map_pointer_circle:focus {
  transform: scale(1.6);
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 10px 4px rgba(47,183,218,0.85); 
}

.map_pointer_circle.active {
  background-color: #1F3A5F;
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 12px 4px rgba(31,58,95,0.9); 
}

.map_pointer_circle::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  pointer-events: auto;
}

.map_pointer_circle,
.map_pointer_circle::before {
  pointer-events: auto;
}



/* Use block labels so they stack nicely */
.leaflet-control-layers-base label {
  display: block;
}

/* Hide original text but keep it in flow */
.leaflet-control-layers-base label span span {
  font-size: 0;
  color: transparent;
}

/* 1st base layer (Street) */
.leaflet-control-layers-base label:nth-child(1) span span::after {
  content: "Kartverket";
  font-size: 12px;
  color: #1F3A5F;
}

/* 2nd base layer (Satellite) */
.leaflet-control-layers-base label:nth-child(2) span span::after {
  content: "Satellitt";
  font-size: 12px;
  color: #1F3A5F;
}



.callout,
.callout_pointer,
.callout_blink {
  animation: none !important;
  position: relative;
}

.callout::after,
.callout_pointer::after,
.callout_blink::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(47,183,218,0.0);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}



#ms_list_rooms {
  font-family: "Source Sans 3", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ROOT */
#ms_list_rooms .cat_parent_root {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #000000;
  margin-top: 10px;
}

/* CATEGORY HEADINGS */
#ms_list_rooms p.cat {
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

/* LEAF ITEMS */
#ms_list_rooms p.children_list_a {
  font-size: 13px;
  font-weight: 400;
  color: #000000;
}

#ms_list_rooms p {
  line-height: 1.7;
  padding: 6px 0;
}

#ms_list_rooms p.children_list_a {
  padding-left: 10px;
}

/* hover */
#ms_list_rooms p:hover {
  color: #2f2f2f;
}

/* open/active category */
#ms_list_rooms p.cat.open {
  color: #000000;
}

.annotation,
.comments_vt,
.map_name,
.list_alt_menu p {
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}

