/* Header Link Styles */
.header-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
}

.header-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.1);
}

.header-link i {
    font-size: 1.1rem;
}

/* Dark Mode Support for Header Link */
body.theme-dark .header-link {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
}

body.theme-dark .header-link:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.2);
}

@media (max-width: 640px) {
    .desktop-only {
        display: none;
    }
    
    .header-link {
        padding: 0.5rem;
    }
}