/* Custom header links for Gene Inspector Pro */
.md-header__inner {
    position: relative;
}

/* Container for header links */
.header-links {
    position: absolute;
    top: 10px;
    right: 280px; /* Move further left to avoid search field */
    display: flex;
    gap: 12px;
    z-index: 1000;
}

/* Style for header link buttons */
.header-link {
    background: var(--md-primary-fg-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.header-link:hover {
    background: var(--md-primary-fg-color--dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hide on smaller screens to avoid overlap */
@media (max-width: 1400px) {
    .header-links {
        display: none;
    }
}

/* Adjust search button position slightly */
.md-search {
    margin-right: 0;
}
