/* app/templates/components/navbar/navbar.css */

.vizop-navbar {
    display: flex;
    justify-content: space-between;

    width: 100%;
    height: 48px;

    padding: 0 8px;

    box-sizing: border-box;

    background-color: #e6e6e6;
}

.vizop-navbar-left,
.vizop-navbar-right {
    display: flex;
    align-items: center;

    height: 100%;
}

.button-image {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    margin: 0;
    padding: 0;

    border: none;
    outline: none;

    background: transparent;

    cursor: pointer;
}

.button-image:hover {
    background-color: #d6d6d6;
}

.button-image:active {
    background-color: #c8c8c8;
}

.button-image img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.vizop-navbar-left .button-image:first-child img {
    width: 36px;
    height: 36px;
}

.navbar-menu-button {
    border: none;
    outline: none;
    background-color: #e6e6e6;
}

.navbar-menu-button:hover {
    background-color: #d6d6d6;
}