@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://unpkg.com/leaflet@1.9.3/dist/leaflet.css');

#mapLayer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 11;
}

#mapLayer #map {
    height: 100%;
}

.map-tag-search-container {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
}

.map-tag-search-container input.search {
    width: 15rem;
    height: 2.3rem;
    text-align: center;
}

#map .btn-wrapper {
    display: flex;
    justify-content: end;
    gap: 10px;
}

#map .btn-wrapper a {
    cursor: pointer;
}

#map .btn-wrapper a {
    color: #000;
    font-weight: 400;
    display: block;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
}
#map .btn-wrapper a::after {
    content: '';
    position: absolute;
    width: 0;
    bottom: 35px;
    right: 5px;
    left: -5px;
    height: 1px;
    z-index: 1;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
#map .btn-wrapper > a:hover {
    color: #f067ff;
}
#map .btn-wrapper > a:hover a::after {
    left: 0;
    right: auto;
    width: 100%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#mapLayer > .map-sidebar {
    position: absolute;
    right: 0;
    top: 1rem;
    margin-right: 1rem;
    z-index: 400;
}

#mapLayer > .map-sidebar li {
    border-radius: 50%;
    background: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

#mapLayer > .map-sidebar li i:hover {
    color: #a077ff;
    cursor: pointer;
}

#mapLayer #map .clone-marker:hover {
    color: red;
    cursor: pointer;
}

#mapLayer .marker-channel-card {
    width: 18rem;
}

#mapLayer .marker-channel-card header {
    display: flex;
    justify-content: space-between;
}

#mapLayer pre {
    white-space: break-spaces;
}

#mapLayer .table-container {
    top: 50%;
    left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    width: 18rem;
    height: 18rem;
    text-align: center;
    border-radius: 15px;
    z-index: 450;
    overflow: auto;
}

#mapLayer #selectTime {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: row-reverse;
}

#mapLayer #selectTime .form-select {
    width: 120px;
    text-align: center;
}
