.panel {
    overflow: auto;
    background: var(--bg-color);
    height: 100vh;
    position: sticky;
    top: 0;
    margin: 0 15px 15px 0px;
}
.panel-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.panel-item {
    display: flex;
    gap: 25px;
    padding: 15px 20px;
    align-items: center;
    border-radius: 60px;
    width: calc(100% - 30px);
}
.panel-item .icon {
    display: flex;
}
.panel-item .logo {
    width: 50px;
}
.panel-item .logo-text {
    width: 60px;
}
.panel-item.site-logo {
    gap: 10px;
    padding: 20px 5px 20px;
}
.panel-item .item-text , .panel-item h2 {
    font-size: 18px;
    margin: 0;
}
.icon svg {
    width: 25px;
    height: 25px;
}
.selected-page {
    display: none;
}
.panel-item:hover:not(.site-logo) {
    background: var(--hoverColor);
}
.user-detail {
    position: absolute;
    margin-top: 20px;
    display: flex;
    bottom: 20px;
    width: calc(100% - 30px);
    border-radius: 60px;
    padding: 10px;
    background: var(--bg-color);
    align-items: center;
    gap: 20px;
    border: 1px solid var(--borderColor);
}
.user-name {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
}
.default-avatar {
    width: 50px;
    border-radius: 50%;
}
.user-avatar {
    display: flex;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    user-select: none;
    align-items: center;
    justify-content: center;
    width:40px;
    height:40px;
}
.user-detail .profile-image {
    width:40px;
    height:40px;
    border-radius:50%;
}