﻿/* Slideout Menu */

#sidebar-panel {
    position: fixed;
    display: flex;
    top: 60px;
    overflow: hidden auto;
    flex-direction: column;
    height: 100vh;
    z-index: 999; /* Stay on top */
    width: 0;
    left: 0;
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    background-color: #f3f2f1;
    border-right: 1px solid #0078D4;
}

#sidebar-menu {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px 0px;
}

.sidebar-menu-item-header {
    color: #191560;
    padding-top: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.sidebar-menu-item a {
    width: 100%;
    padding: 3px 20px 3px 30px;
    text-decoration: none;
    /*font-size: 16px;*/
    color: #6E6ED1;
    display: inline-block;
    transition: 0.3s;
}

.sidebar-menu-item-link {
}

#sidebar-panel-footer {
    padding: 0px 0px 60px 0px;

}

.sidebar-menu-item a:hover {
    text-decoration: none;
    background-color: #6E6ED1;
    color: #fff;
    transition: 0.25s;
}


.sidebar-menu-item-small a {
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding-top:3px;
    padding-bottom:3px;
    margin-bottom:5px;
    color: white;
    background-color: #6E6ED1;
    display: inline-block;
    transition: 0.3s;
}

    .sidebar-menu-item-small a:hover {
        filter: brightness(1.25);
        transition: 0.25s;
    }

.side-dialog-shared {
    width: 300px !important;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    position: fixed;
    top: 0 !important;
    left: 0;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    z-index: 9999;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

    .side-dialog-shared::backdrop {
        background: rgba(0, 0, 0, 0.25);
    }

#sideDialog-shared.open {
    transform: translateX(0) !important;
}

#overlayShared {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background 0.4s;
}

.ui-dialog {
    margin-top: 100px !important;
}

.top-header {
    background-color: #191560;
    color: white;
    padding: 0 1rem;
    height: 6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.top-header-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-header-menu {
    background-color: #191560;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

    .top-header-menu:hover {
        filter: brightness(1.8);
        transition: 0.25s;
    }

.top-header-buttons {
    background-color: #6E6ED1;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    cursor: pointer;
}

    .top-header-buttons:hover {
        filter: brightness(1.25);
        transition: 0.25s;
        text-decoration: none;
        color: white;
    }

    .top-header-buttons:active {
        filter: brightness(1.25);
        transition: 0.25s;
        text-decoration: none;
        color: white;
    }

    .top-header-buttons:visited {
        filter: brightness(1.25);
        transition: 0.25s;
        text-decoration: none;
        color: white;
    }

    .top-header-buttons:link {
        background-color: #6E6ED1;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 9999px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        text-decoration: none;
        cursor: pointer;
    }

.top-header-icons {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

