﻿.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #146997; /*#146e97;*/
    background-image: url(../Img/HeaderBgImage.png);
}

.navbar-logo {
    display: flex;
    align-items: center;
}

    .navbar-logo img {
        height: 40px;
        margin-right: 10px;
    }

.navbar-menu {
    display: flex;
}

.navbar-list {
    display: flex;
    list-style: none;
}

    .navbar-list li {
        margin-left: 20px;
    }

        .navbar-list li a {
            text-decoration: none;
            color: white;
            font-weight: bold;
        }

.navbar-user {
    color: white;
    font-size: 16px;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.navbar-hamburger {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background-color: #0073a5;
        width: 200px;
        flex-direction: column;
        padding: 10px;
    }

        .navbar-menu.active {
            display: flex;
        }

    .navbar-list {
        flex-direction: column;
        text-align: right;
    }

        .navbar-list li {
            margin: 10px 0;
        }

    .navbar-toggle {
        display: flex;
    }
}