.navbar {
    position: fixed;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background-color: rgba(47, 47, 47, 0.75);
    overflow-x: hidden;
    transition: width 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
    z-index: 1;
}

.navbar.open {
    width: 200px;
    transition: width 0.5s ease;
}

.mainopen {
    margin-left: 200px;
    transition: margin-left 0.5s ease;
}

.main {
    transition: margin-left 0.5s ease;
    margin-left: 60px;
}

.toggle {
    background-color: rgb(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 10px;
    width: 100%;
    text-align: left;
}

.menu-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    transition: background-color 0.5s;
}

.bottom{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1px;
    color: white;
    background-color: rgb(0, 0, 0,0.5);
    margin-bottom: 10px;
    margin-top: auto;
}

.profbottom{
    display: none;
    align-items: center;
    width: 100%;
    padding: 1px;
    color: white;
    background-color: rgb(168, 168, 168, 0.5);
    margin-bottom: 10px;
    margin-top: auto;
    position: absolute;
    bottom: 53;
}
.navbar.open .profbottom{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1px;
    color: white;
    background-color: rgb(168, 168, 168, 0.5);
    margin-bottom: 10px;
    margin-top: auto;
    position: absolute;
    bottom: 53;
}

.icon {
    font-size: 20px;
    margin-right: 15px;
    width: 30px;
    height: 30px;
}
.icon :hover{
    font-size: 20px;
    margin-right: 15px;
    
}


.no-display{
    display: none;
}


.navbar.open .text {
    display: inline;
}
.navbar.open .profbottext {
    display: inline;
}

.profbottext{
    font-size: 20px;
    color: white; 
    display: none;
    white-space: nowrap;
}

.profbottext:hover{
    font-size: 21px;
    color: rgb(0, 195, 255); 
    display: none;
    white-space: nowrap;
}
.navlabel{
    font-size: 20px;
    color: white; 
}