﻿
/* Sidebar styles */
.e-sidebar {
    height: calc(100% - 50px) !important;
    box-sizing: border-box;
    position: fixed !important;
}

    .e-sidebar.e-left {
        border-right: 0 solid rgba(0, 0, 0, 0);
        background-color: #00A0DD !important;
        z-index: 999;
/*        transform: translateX(0%);
        transition: transform .5s ease;
        visibility: visible;*/
    }
 /*       top: 50px !important;*/
    

    .e-sidebar.e-right {
        border-left: 0 solid rgba(0, 0, 0, 0);
        z-index: 999;
        top: 55px !important; /* Different from left sidebar due to Syncfusion behavior */
    }

.sidebar-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: auto;
}

.main-wrapper {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-bar {
    flex: 0 0 auto;
}
/* Menu Top Bar */
.logo {
    padding: 5px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 16px !important;
}

.menu-list {
    flex: 1;
    padding-top: 10px;
}

/* left menu padding */
.e-treeview .e-ul {
    margin: 0;
    padding: 0 0 0 0px;
    overflow:hidden;
}

/* default menu text color */
.e-treeview .e-list-text {
    color: white;
    font-size: 14px;
}

/* Menu Item Active */
.e-treeview .e-list-item.e-active > .e-fullrow {
    background-color: rgba(11, 59, 96, 0.3);
    border-color: #00A0DD;
}
/* Menu Item Hover */
.e-treeview .e-list-item.e-hover > .e-fullrow,
.e-treeview .e-list-item.e-node-focus > .e-fullrow {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: #00A0DD;
}

/* Menu Item Active & Hover */
.e-treeview .e-list-item.e-active.e-hover > .e-fullrow,
.e-treeview .e-list-item.e-active.e-node-focus > .e-fullrow {
    background-color: rgba(255, 255, 255, 0.5);
    border-color: #00A0DD;
}

/* Menu text Active */
.e-treeview .e-list-item.e-active > .e-text-content .e-list-text {
    color: white;
}
/* Menu text Hover */
.e-treeview .e-list-item.e-hover > .e-text-content .e-list-text {
    color: #0B3B60;
}
/* Menu text Active & Hover */
.e-treeview .e-list-item.e-active.e-hover > .e-text-content .e-list-text {
    color: #0B3B60;
}
