.star-map-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0px !important;
}

.star-map-container {
  padding-inline: 50px !important;
}
.star-map-container button.category-button:before {
  display: none !important;
}

#star-map-wrapper {
    width: 100%;
    height: 100vh;
    overflow-x: auto;
    overflow-y: auto;
    text-align: center;
}

#star-map {
    display: inline-block;
    min-width: 100%;
    height: auto;
}

#star-map svg {
    display: block;
    height: auto;
    width: 100vw;
}

.category-buttons {
    margin-bottom: 20px;
    text-align: center;
}

.category-buttons button {
    margin: 5px;
    padding: 10px;
    background-color: #1f4b73;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    opacity: 0.5;
}

.category-buttons button:hover {
    background-color: #3a6fa0;
    opacity: 1;
}

.category-buttons button.active {
    opacity: 1;
}

.tooltip {
    position: absolute;
    background: lightgray;
    padding: 5px;
    border-radius: 5px;
    display: none;
    font-size: 12px;
    pointer-events: none;
}