* {
    /* margin: 0;
    padding: 0; */
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 15px 20px;
}

.menu_selector{
    color:black;
}

.logo {
    font-size: 30px;
    font-weight: bold;
}

.menu {
    list-style: none;
    display: flex;
    margin: 0;
}

.menu li {
    margin: 0;
}

.menu select {
    margin: 0;
}

.menu a {
    text-decoration: none;
    color: white;
    padding: 10px;
    transition: 0.3s;
}

.external-link-icon {
    font-size: 0.85em;
    margin-left: 4px;
    vertical-align: middle;
    opacity: 0.85;
}

.go-button {
    background-color: green;
    color: white;
}

.settings-button {
    color: white;
}

.menu .go-button:hover {
    background: #6d65c4;
    border-radius: 5px;
    color: white;
}

.menu .settings-button:hover {
    background: #d98d8d;
    border-radius: 5px;
    color: white;
}

.hamburger {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: none;
}

/* Responsive Menu */
@media screen and (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #333;
        width: 100%;
        text-align: center;
    }

    .menu li {
        padding: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .menu.active {
        display: flex;
    }
}
.user-guide-link {
    position: absolute;
    top: 155px;
    right: 116px;
}