.global-header {
    background: #333;
    font-family: system-ui, sans-serif;
    width: 100%;
    position: relative;
    z-index: 999;
}

.gh-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%; /* ensure it fills container */
    flex-wrap: nowrap; /* prevent links from wrapping */
    overflow-x: auto;  /* allow horizontal scroll if needed */
    padding: 10px 20px;
}

.gh-menu {
    list-style: none;
    display: flex;
    gap: 4px;   /* was 12px */
    margin: 0;
    padding: 0;
}

.gh-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 3px 8px;   /* less vertical padding */
    line-height: 1.2;    /* controls vertical spacing tightly */
    border-radius: 4px;
    transition: background .25s;
    white-space: nowrap;
}

.gh-menu a:hover {
    background: #085dad;
}

.gh-highlight a {
    color: #ffd84d;
    font-weight: 700;
}

/* Social Icons */
.gh-social {
    display: flex;
    gap: 10px;
}

.gh-social img {
    height: 20px;
    width: auto;
}

/* Mobile Toggle */
.gh-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 10px !important;
    cursor: pointer;
}

.gh-toggle-label {
    font-size: inherit !important;     /* now inherits from button */
}

/* Mobile Styles */
@media (max-width: 900px) {
    .gh-toggle {
        display: flex !important;  /* keep flex for label + arrow */
    }

    .gh-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        background: #333;
        flex-direction: column;
        display: none;
        padding: 15px;
    }

    .gh-menu.open {
        display: flex;
    }

    .gh-social {
        display: none;
    }
}