#csssidebar {
    top: 88px;       
    bottom: 60px;   
    right: 100px;
    width: 80px;
    background-color: rgba(221, 237, 255, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
    padding: 16px 0;
    border-radius: 40px;
    z-index: 10;
    box-sizing: border-box;  
}


#csssidebar .sidebar-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    
    border-radius: 50%;
    background-color: var(--bg-white);
}

.sidebar-icon img {
  width: 34px;
  height: 34px;
}



