﻿.navbar {
    display: flex;
    flex-direction: column;
    width: 100vw;
}

.navbar-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/*.top-menu,
.main-menu,
.worklist {
    width: 100%;
}*/

.top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.title {
    flex: 1; /* Takes remaining space, pushing site-menu to the right */
}

.search {
    display: flex;
    justify-content: flex-start; /* Aligns search to the left */
    align-items: center;
    margin-right: 50px; /* Adds some space to the left of the search */
}

.site-menu {
    display: flex;
    justify-content: space-between; /* Equal space between site-menu items */
    align-items: center;
    margin: 10px;
}

.site-menu img {
    margin-right: 15px !important; /* Adjust the margin as needed */
    width: 20px;
}

.main-menu {
    background-color: #0078C1; /* Optional: Add background color to main menu */
    padding: 20px; /* Optional: Add padding to main menu */
}

.worklist {
    background-color: #1EBEFF; /* Optional: Add background color to worklist */
    padding-left: 30px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
}
