#DashboardContainer
    {
        width:100%;
        height: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }
#DashboardContainerD1
    {
        width:100%;
        height: 50px;
        box-shadow: 1px 3px 5px gray;
    }
#DashboardContainerD11
    {
        width:100%;
        height: 20px;
        display: flex;
        justify-content: right;
        align-items: center;
    }
#DashboardContainerD11 span
    {
        margin-right: 10px;
    }
#DashboardContainerD11 i
    {
        margin-right: 10px;
        cursor: pointer;
        font-size: 20px;
    }
#DashboardContainerD12
    {
        width:100%;
        height: 30px;
        padding-left:60px;
    }
#DashboardContainerD12 span
    {
        font-size: 2rem;
        font-weight: 800;
        font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    }
#DashboardContainerD12 .logo-container
    {
        position: absolute;
        top:2px;
        left:5px;
        width:45px;
        height: 45px;
        border-radius: 50%;
        background-color: var(--Secondary-Color);
        display: flex;
        justify-content: center;
        align-items: center;
    }
#DashboardContainerD12 .logo-container img
    {
        width:90%;
    }
#DashboardContainerD2
    {
        flex-grow: 1;
        width:100%;
        height: calc(100% - 50px);
        padding:5px 3px 3px 3px;
        
    }
#DashboardContainerD21
    {
        width:100%;
        height: 100%;
        background-color: var(--Secondary-Color);
        border:solid 1px gray;
        border-radius: 5px;
    }
#DashboardContainerD21 li
    {
        cursor: pointer;
    }
#DashboardContainerD21 a
    {
        display: inline-flex;
        padding-top:10px;
        font-size: 1.5rem;
        font-weight: 800;
        color: blue;
        text-decoration: none;
       
    }
#DashboardContainerD21 img
    {
        position: fixed;         /* Keeps it in place even when scrolling */
        width:50%;
        bottom: 10px;
        right: 50px;
        opacity: 0.3;            /* Makes it semi-transparent */
        font-size: 20px;
        color: gray;
        z-index: 9999;           /* Ensures it stays above other content */
        pointer-events: none;    /* Prevents it from interfering with clicks */

    }