#map {
    height: 100%;
    width: 100%;
}

.floor-buttons {
    margin: 10px;
    position: absolute;
    top: 5px;
    z-index: 999;
    right: 5px;
}

.floor-buttons button {
    background: #fff;
    padding: 5px;
    margin-right: 5px;
    border-radius: 10px;
    height: 50px;
    font-size: 35px;
    font-weight: 700;
    border: none;
    box-shadow: 0 2px 2px #999;
    cursor: pointer;
}

.active {
    background: #0d6efd !important;
    color: white;
}

.container-map {
    position: relative;
    width: 100%;
    height: 85vh;
    margin-top: 8%;
    color: #666;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 999px;
    padding: 3px 10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    width: 300px;
    height: 50px;
    max-width: 100%;
    font-family: Arial, sans-serif;
    position: absolute;
    z-index: 999;
    left: 10px;
    top: 10px;
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 25px;
    padding: 6px 8px;
    width: 100px;
}

.material-icons {
    font-size: 20px;
    color: #555;
    cursor: pointer;
    user-select: none;
}

.direction-icon {
    color: #0d6efd;
    padding: 5px;
    border: 1px solid #c2d7f6;
    border-radius: 50%;
    background: #c2d7f6;
    font-size: 1rem;
}

.list-room {
    position: absolute;
    background: #fff;
    width: 200px;
    border-radius: 0 0 20px 20px;
    top: 30px;
    padding: 10px 5px;
    left: 0;
    font-size: 12px;
    box-shadow: 0 2px 2px #ccc;
}
.list-room >div {
    margin: 0;
    padding: 0;
    list-style: none;
}

.list-room .list-room-item {
    padding: 5px 8px;
    border-radius: 10px;
}

.list-room .list-room-item:hover {
    background-color: #efefef;
}

.search-box.focus {
    border-radius: 20px 20px 0 0 !important;
}

.hide {
    display: none !important;
}

.text-dark {
    color: #666;
}

.cursor-pointer {
    cursor: pointer;
}

.highlight polygon, .highlight path, .highlight rect {
    stroke: red;
    stroke-width: 0;
    fill: transparent;
    animation: beepBeep 0.5s ease-in-out infinite;
    opacity: 1;
  }

.your-here {
  animation: beepBeepTransparent 1s ease-in-out infinite; 
}
  
  @keyframes beepBeep {
    0%, 100% {
      fill: transparent;
      opacity: 1;
    }
    25%, 75% {
      fill: yellow;
      opacity: 1;
    }
    50% {
      fill: transparent;
      opacity: 1;
    }
  }

  @keyframes beepBeepTransparent {
    0%, 100% {
      opacity: 0;
    }
    25%, 75% {
      opacity: 0.8;
    }
    50% {
      opacity: 1;
    }
  }

.detail-room, .route-room {
    position: absolute;
    background: #fff;
    top: 40px;
    left: 0px;
    padding: 2px;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.desc-room {
    padding: 5px;
    font-size: 0.7rem;
    color: #222;
}

.route-room {
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
  }

  .input-wrapper {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 5px 10px;
  }

  .input-wrapper input,
  .input-wrapper .input-div {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    background-color: transparent;
  }

  .input-wrapper .input-div {
    color: #333;
    font-size: 0.6rem;
  }

  .input-wrapper .material-icons {
    color: #888;
    cursor: pointer;
  }

  .location-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
    width: 15px;
  }

  .circle-radio {
    width: 9px;
    height: 9px;
    border: 2px solid #e62129;
    border-radius: 50%;
    margin-bottom: 10px;
  }

  .material-icons.pin {
    color: red;
    font-size: 1rem;
  }

  .input-group {
    display: flex;
    align-items: flex-start;
    padding: 5px;
  }

  .route-direction {
    font-size: 0.7rem;
    padding: 5px 10px;
    color: #666;
  }

  .route-direction ol{
    padding-inline-start: 10px;
  }
  .route-direction >li{
    list-style: none;
  }
