#minimap-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100vh;
  border-left: 1px solid #ccc;
  background: white;
  overflow: auto;
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
  z-index: 1;
  padding: 10px;
  box-sizing: border-box;
}

#minimap-sidebar > .genealogy-inner {
  transform-origin: 0 0;
  transform: scale(0.8);
  width: auto;
  height: auto;
}

#minimap-sidebar ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

#minimap-sidebar li {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
div#minimap-sidebar .genealogy-inner a {
    display: inline-block; /* ou block/flex */
    padding: 5px; /* espaço para o hover */
    width: 100%;
    cursor: pointer;
    border-bottom: 2px dashed;
}
div#minimap-sidebar .genealogy-inner a:hover{
    background-color: #007bff80 !important;

}

input[type="search"] {
    -webkit-appearance: searchfield; /* Restaura o 'X' em navegadores WebKit/Chromium */
}