.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f0f0f0;
}
.navbar-top p {
    margin: 0;
    font-size: 0.7em; /* Reduced font size */
    color: rgba(0, 0, 0, 0.5); /* Gray color with opacity */
}
.navbar-top .left {
    display: flex;
    align-items: center;
}
.navbar-top .left p {
    margin-right: 10px; /* Added margin to separate text from icons */
}
.navbar-top .right {
    display: flex;
    align-items: center;
}
.navbar-top .right p {
    margin-right: 10px; /* Added margin to separate text from icons */
    color: rgba(0, 0, 0, 0.5); /* Gray color with opacity */
}
.navbar-top .right i {
    margin-left: 10px;
    font-size: 1.2em;
    color: #007bff;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
}
.navbar-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
.navbar-middle .logo-container {
    display: flex;
    align-items: center;
}
.navbar-middle img.logo {
    height: 50px;
}
.navbar-middle .icons {
    display: flex;
    align-items: center;
}
.navbar-middle .search-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    padding: 5px;
    border-radius: 5px;
    margin-left: 10px; /* Added margin to bring it closer to the left icons */
}
.navbar-middle input[type="text"] {
    border: none;
    outline: none;
}
.navbar-middle .search-container i {
    margin-left: 10px;
    font-size: 1.2em;
    color: #007bff;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
}
.navbar-middle .icons i {
    margin-left: 10px;
    font-size: 1.2em;
    color: black;
    background-color: white;
    border-radius: 50%;
    padding: 5px;
}
.navbar-bottom {
    display: flex;
    justify-content: center;
    background-color: #007bff;
}
.navbar-bottom a {
    padding: 15px 20px;
    color: white;
    text-decoration: none;
}
.navbar-bottom a:hover {
    background-color: #0056b3;
}
/* Styling for the logout icon */
.navbar-top .right .logout-icon {
    color: rgba(0, 0, 0, 0.5); /* Gray color with opacity */
}