#wasm-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: #87CEEB; /* just 4 test */
}

#map-div {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    border: none;
}

.custom-label {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.label-background {
	display: inline-block;
	min-width: 50px;
	max-width: 200px;
    background-color: black;
    border: 1px solid black;
    opacity: 0.75;
    padding: 5px 10px;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    text-align: center;
	word-wrap: break-word;
    overflow-wrap: break-word;
	transform: translateX(-50%);
}

.button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    height: 62px;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
    background-color: white;
    color: black;
    border: none;
    border-radius: 10px;
    z-index: 1001;
}

.button:hover {
    background-color: #f0f0f0;
}

.close_button {
    position: absolute;
    top: 30px;
    right: 30px;
}

.button-container {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.wraper {
    position: absolute;
    z-index: 4;
}

.hidden {
    pointer-events: none;
}

.disabled-button {
    background-color: #f0f0f0;
}

.icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.no_display {
	display: none;
}

.repeater-glow {
  stroke: #00ffff;
  stroke-opacity: 0.9;
  stroke-width: 4;
  fill: #00ffff;
  fill-opacity: 0.4;
}

.basestation-glow {
  stroke: #ff00ff;
  stroke-opacity: 0.9;
  stroke-width: 4;
  fill: #ff00ff;
  fill-opacity: 0.4;
}

.basestation-normal {
  stroke: black;
  stroke-opacity: 0.2;
  stroke-width: 3;
  fill: #fff200;
  fill-opacity: 0.2;
}