body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: sans-serif;}

#viewport {width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-color: #161613;
    cursor: grab;}

#map{position: absolute;
    width: 22000px;
    height: 22000px;
    transform-origin: top left;
    top: 0;
    left: 0;}

    

.grid-line {position: absolute;
    background: #221f1b;
    font-size: 10px;
    color: #221f1b;}

.grid-label {position: absolute;
    font-size: 30px;
    color: #000000;
    pointer-events: none;}

#svgCanvas {background-color: rgba(202, 186, 114, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 22000px;
    height: 22000px;
    pointer-events: none;
}

.object {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: red;
  border-radius: 50%;
  transition: transform 0.1s ease;
}

.object:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.object:active {
  transform: scale(1.4);
}


.object-label {position: absolute;
    font-size: 50px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
    pointer-events: none;
    white-space: nowrap;}

.wall {
  position: absolute;
  background: #888;
  height: 4px;
}

.wall.pillar {
  background-color: #666;
  border: 1px solid #222;
  box-sizing: border-box;
}


.object-label.primary-label {font-weight: bold;
    color: #fff;
    z-index: 3;}

.object-label.secondary-label {color: #ffffff;}

.object-label.tertiary-label {color: #0f0;}
/* Sidebar layout */
.sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 100vh;
  background-color: #2e2e2e;
  color: white;
  padding: 16px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.sidebar.hidden {
  transform: translateX(-100%);
}

/* Hide button inside sidebar */
.sidebar-hide-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #444;
  color: white;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
}

/* Reveal button (long horizontal bar) */
.reveal-sidebar {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #2e2e2e;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  z-index: 1001;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.menubutton{position: absolute;
    float: right;
    top: 10px;
    right: 10px;
    background-color: #2e2e2e;
    color: white;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    z-index: 1001;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
}
.menu-list {
  list-style: none;
  padding: 0;
}
.menu-list li {
  margin: 10px 0;
}
.menu-list a {
  color: #007bff;
  text-decoration: none;
}

.reveal-sidebar.hidden {
  display: none;
}

/*Find Your Location*/
.temp-marker {position: absolute;
   width: 15px;
   height: 15px;
   background-color: rgb(0, 60, 255);
   border: 2px solid rgb(255, 255, 255);
   border-radius: 50%;
   pointer-events: none;
}

.object.star {background-color: gold;
   color: black;
   font-weight: bold;
   width: 24px;
   height: 24px;}




/*CUSTOMIZING MAP*/
/*EXAMPLE ON HOW TO COLOR*/
/*.basewalls.filled{fill: rgb(28, 7, 146);}  
.filled {
  fill: rgb(250, 127, 127); /* or any color you want 
  fill-opacity: 1; /* optional: transparency */
  /* stroke: black;     /* optional: outline */
  /* stroke-width: 1;    optional  } */ 




/*POINTS*/
.moldceiling{background-color: rgb(16, 85, 25);}
/*CUSTOMIZING MAP*/
.beaconwall.filled{fill: rgb(63, 46, 29);
   stroke: rgb(63, 46, 29);} 
.beaconwall{background-color: rgb(63, 46, 29);}
.pinkwindows{background-color: #e74dc6;}
.pinkpillar{background-color: #e74dc6 !important;
  border: 1px solid #5c2261 !important;}
.pinkarea{background-color: rgba(231, 77, 198, 0.2) !important;
  border: 0px solid #5c2261 !important;}
.landmarkground{background-color: rgba(172, 122, 49, 0.2) !important;
  border: 0px solid #5c2261 !important;}
.greenlandmarkground{background-color: rgba(49, 172, 65, 0.2) !important;
  border: 0px solid #5c2261 !important;}


/*POOLROOMS*/
.poolsarea{background-color: rgba(170, 218, 226, 0.2) !important;
  border: 0px solid #000000 !important;}
  