#galaxy_container {
    position: relative;
    width: 100%;
    height: 700px;
    background: #050816;

    background-image: url('/img/univers/pixnio-3840x2176.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: 1px solid #1b2a4a;
    border-radius: 10px;
    overflow: hidden;
}

#galaxy_map {
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
}

#galaxy_map:active {
    cursor: grabbing;
}

#galaxy_loading {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #ffffff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 14px;
    border-radius: 6px;
    z-index: 10;
}

.galaxy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.galaxy-controls {
    display: flex;
    gap: 10px;
}

.galaxy-controls button {
    background: #12203a;
    border: 1px solid #2c4d7a;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.galaxy-controls button:hover {
    background: #1c3158;
}

#selected_system p {
    margin-bottom: 10px;
}

#selected_system a {
    color: #4db8ff;
    text-decoration: none;
}

#selected_system a:hover {
    text-decoration: underline;
}