.wrapper_main_and_navbar {
    display: flex;
    min-height: 100vh;
}
#navbar {
    width: 250px;
    transition: margin 0.3s ease-in-out;
}
.collapsed-sidebar {
    margin-left: -250px;
}
#mainContent {
    transition: all 0.3s ease-in-out;
    width: 100%;
}
.collapsed-sidebar + .toggle-btn {
    left: 10px;
}
.navbar_bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: white; /* Цвет точки (можно изменить) */
    border-radius: 50%; /* Делаем точку круглой */
    margin-right: 10px; /* Расстояние от точки до текста */
}
.toggle-btn i {
    transition: transform 0.3s ease;
}
.toggle-btn {
    position: fixed;
    top: 14px;
    left: 10px;
    z-index: 1040;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    padding: 0;
}
.bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.collapsed-sidebar + .toggle-btn {
    left: 10px;
}
.main-expanded {
    margin-left: 0 !important;
    width: 100% !important;
}
