.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    padding: 0 2%;
    left: 0;
    right: 0;
    background: #FFF;
    z-index: 2;
    height: var(--header-bar-height);

    .logo {
        width: 210px;
        min-width: 210px;
        display: inline-block;
    }

    .user-block {
        display: flex;
        align-items: center;
        max-width: 500px;
        justify-content: end;
        gap: 16px;
    }

    .login-button {
        background-color: #898e8c;
        border-color: #898e8c;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 6px 15px;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        cursor: pointer;
        float: right;
        text-decoration: none;
        text-transform: uppercase;
        color: #FFF;
        border-radius: 0.25rem;
    }

    .login-button:hover {
        background-color: #babfb7;
        border-color: #babfb7;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .user-info {
        display: flex;
        text-align: right;
        float: right;
        font-size: 0.9em;
        position: relative;
        gap: 16px;

        .username {
            font-weight: bold;
            color: #8aadcb;
        }

        .info {
            display: inline-block;
        }

        .info-icon-link {
            text-decoration: none;

            img {
                width: 30px;
            }
        }
    }
}

/* --- <= 1199px : a bal menü lenyíló panellé válik ------------------------- */
@media (max-width: 1199px) {
    .header-bar {
        .user-info {
            .help {
                display: none;
            }
        }
        .login-button {
            display: none;
        }
    }
}

/* --- <= 767px Mobil nézet ------------------------------ */
@media (max-width: 767px) {
    .header-bar {
        display: none;
    }
}