body {
    padding: 0;
    margin: 0;
}
html, body, #map {
    height: 100%;
    width: 100vw;
}
code {
    color: brown;
}

#progress {
    display: none;
    position: relative;
    z-index: 1000;
    left: 50%;
    top: 50%;
    width: 200px;
    height: 20px;
    margin-top: -20px;
    margin-left: -100px;
    background-color: #fff;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    padding: 2px;
}

#progress-bar {
    width: 0;
    height: 100%;
    background-color: #76A6FC;
    border-radius: 4px;
}


.italic {
    font-style: italic;
}

.buttonsTable {
    border: 1px solid grey;
    border-collapse: collapse;
}

.buttonsTable td, .buttonsTable th {
    padding: .5em;
    border: 1px solid grey;
}
.version-disabled {
    text-decoration: line-through;
}



/* tooltip-class*/ 

.class-tooltip{
  background: transparent;
  border: 0px  transparent;
  border-color: none;
  box-shadow: none;
}
.leaflet-tooltip-left.class-tooltip::before {
  border-left-color: black;
}
.leaflet-tooltip-right.class-tooltip::before {
  border-right-color: black;
}

/* 지도 테두리 깜빡이는 애니메이션 */
@keyframes blink-border {
  0%, 100% {
    border: 5px solid transparent;
  }
  50% {
    border: 5px solid red;
  }
}

.blinking-border {
    animation: blink-border 0.5s ease-in-out 3;
    will-change: border;
}
