/* App Container */
.gvp-app {
    min-height: 100vh;
    display: flex;

}

/* Sidebar */
.gvp-sidebar {
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    overflow: hidden;
    z-index: 1000;
}


.gvp-sidebar__logo {
    margin-top: 1.5rem;
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gvp-sidebar__logo-img {
    width: 38px;
    height: auto;
    display: block;
}

.gvp-sidebar__logo-icon {
    margin-top: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.gvp-sidebar__logo-icon svg {
    width: 24px;
    height: 24px;
}

/* View Switcher in Sidebar */
.gvp-sidebar__view-switcher {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 140px;
    margin-left: 0px;
    padding: 0.25rem;
    border-radius: 10px;
    width: 50px;
}

.gvp-sidebar__view-switcher .gvp-view-switcher__btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.gvp-sidebar__nav {
    position: absolute;
    top: 400px;
    left: 0;
    right: 0;
    display: flex;
    margin-top: 0px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gvp-sidebar__view-switcher + .gvp-sidebar__nav {
    top: 400px;
}

.gvp-sidebar__nav-inner {
    position: relative;
    width: 94px;
    height: 518px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 0;
}

.gvp-sidebar__nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gvp-sidebar__nav-inner > *:not(.gvp-sidebar__nav-bg) {
    position: relative;
    z-index: 1;
}

.gvp-sidebar__btn {
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.gvp-sidebar__btn svg {
    width: 22px;
    height: 22px;
}

.gvp-sidebar__btn:hover {
    background-color: #34495e;
    color: #ecf0f1;
}

.gvp-sidebar__btn--active {
    background-color: #a855f7;
    color: white;
}

.gvp-sidebar__btn--active:hover {
    background-color: #c598ef;
}

/* User Avatar in Sidebar */
.gvp-sidebar__user {
    margin-bottom: 1.5rem;
}

.gvp-sidebar__user-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.gvp-sidebar__user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

/* Sidebar Footer */
.gvp-sidebar__footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
    padding-top: 0;
}

