/* Make the toolbar fixed */
.fixed-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays above other elements */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
    background-color: #22252B; /* Set background color */
}

/* Adjust the content to prevent it from being hidden under the fixed toolbar */
/*.content {
    margin-top: 72px; *//* Adjust this to match the height of the toolbar *//*
}*/

/* Optional: Styling for the toolbar icons */
.toolbar-icons img {
    cursor: pointer;
    transition: transform 0.2s;
}

.toolbar-icons img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}


.toolbar-text {
    color: #97989B; /* Set text color */
}

.toolbar .logo {
    margin-left: 40px;
}

