@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700&display=swap");

* {
  /* outline: 1px solid red; */
}
body {
  font-family: "League Spartan", sans-serif;
  min-height: 100svh;
}
#app {
  display: flex;
  flex-direction: column;
  height: 100svh;
  width: 100%;
}

.blink {
  animation: blink-animation 4s infinite;
  animation-timing-function: step-end;
  filter: brightness(0.3);
  /* Dimmed by default */
}

@keyframes blink-animation {
  0%,
  50% {
    filter: brightness(0.9);
    /* Dimmed state */
  }

  51%,
  100% {
    filter: brightness(1);
    /* Bright state */
  }
}

.ol-popup {
  position: absolute;
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  bottom: 12px;
  left: -50px;
  min-width: 280px;
}
.ol-popup:after,
.ol-popup:before {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.ol-popup:after {
  border-top-color: white;
  border-width: 10px;
  left: 48px;
  margin-left: -10px;
}
.ol-popup:before {
  border-top-color: #cccccc;
  border-width: 11px;
  left: 48px;
  margin-left: -11px;
}
.ol-popup-closer {
  text-decoration: none;
  position: absolute;
  top: 2px;
  right: 8px;
}
.ol-popup-closer:after {
  content: "✖";
}

/* Enable scroll bar for */

.scroll-bar {
  scrollbar-width: thin;
  scrollbar-color: #888 #f5f5f5;
}

.scroll-bar::-webkit-scrollbar {
  width: 12px;
}

.scroll-bar::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.scroll-bar::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 20px;
  border: 3px solid #f5f5f5;
}

.scroll-bar::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
