/* Header-specific overrides kept minimal so components.css remains authoritative */
.main-header {
    height: 60px;
    box-sizing: border-box;
}

.navbar {
    align-items: center;
    display: flex;
}

.login-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--neon-accent-2), var(--neon-accent));
    color: #0f1720;
    font-weight: 700;
    font-size: 15px;
    border: none;
    box-shadow: 0 2px 12px rgba(0,230,255,0.12);
    text-decoration: none;
    transition: box-shadow .2s, transform .12s;
    position: absolute; /* pin to right edge so centered nav doesn't push it */
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 940;
}

.login-header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,230,255,0.12);
}
