﻿.pv-topnavbar {
    width:100%;
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-bottom: 0.1px solid #ccc;
    padding: 0px 5px 0px 5px;
    height:46px;
}

.pv-topnavbar-home {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:3px;
}

.pv-topnavbar-home button{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.pv-topnavbar-home-logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.pv-topnavbar-home-logo {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.pv-topnavbar-home-logo img{
    width:28px;
    height:28px;
}

.pv-topnavbar-home-logo-text{
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    text-decoration:none;
}

.pv-topnavbar-profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.pv-topnavbar-profile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

    .pv-topnavbar-profile-info h6 {
        font-size: 12px;
        font-weight: 700;
        margin: 0;
        line-height:1;
    }

    .pv-topnavbar-profile-info h5 {
        font-size: 12px;
        font-weight: 700;
        margin: 0;
        line-height: 1;
    }

    .pv-topnavbar-profile-info p {
        font-size: 10px;
        font-weight: 600;
        margin: 0;
        line-height: 1;
    }

.pv-sidenavbar {
    width: 225px;
    position: absolute;
    top: 46px;
    left: -300px;
    height: calc(100vh - 46px);
    background-color: #fff;
    transition: left 0.5s ease;
    box-shadow: 0 12px 12px 5px rgb(0 0 0 / 30%);
}

.pv-sidenavbar.toggled {
    position: absolute;
    top: 46px;
    left: 0px;
}


.pv-sidenavbar-section {
    padding: 0px;
    padding-top: 5px;
}

    .pv-sidenavbar-section > p {
        margin: 0;
        font-size: 12px;
        color: #888;
        padding-left: 10px;
    }


.pv-sidenavbar-section-items {
    padding: 0px;
    padding-top: 5px;
}

.pv-sidenavbar-section-item-container {
    list-style: none;
    padding: 4px 10px;
    border-radius: 5px;
}

.pv-sidenavbar-section-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    text-decoration: none;
    padding: 8px 14px 8px 14px;
    color: #888;
    border-radius: 5px;
}

.pv-sidenavbar-section-item:hover {
   background-color: #eee;
}

    .pv-sidenavbar-section-item span {   
        margin: 0;
        font-size: 18px;
        color: #888;
    }

    .pv-sidenavbar-section-item p {   
        margin: 0;
        font-size: 13px;
        color: #888;
    }