html,
body,
:root {
    height: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.main-page-title {
    margin-top: 20px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.main-page-buttons {
    margin-top: 30px;
    margin-bottom: 30px;

    a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        background-color: #333;
        padding: 20px;
        border-radius: 10px;
        white-space: nowrap;
    }
}

.dashboard-bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Public/Images/DashboardBackground-min.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    opacity: 0.1;
    z-index: -1;
    animation: slideInLeft 1s ;
}
.main-bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Public/Images/LoginBackground-min.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    opacity: 0.1;
    z-index: -1;
    animation: slideInDown 2s ;
}

#header {
    background-color: #fff; 
    -webkit-box-shadow: -0px 0px 4px 1px #fff;
    box-shadow: -0px 0px 4px 1px #fff;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

#left-menu {
    position: absolute;
    width: 250px;
    left: -300px;
    top: 106px;
    overflow: hidden;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-shadow: -0px 0px 4px 1px #fff;
    box-shadow: -0px 0px 4px 1px #fff;
    background-color: #ffffff;
    z-index: 5;
    padding-right:10px;
    padding-left: 10px;
    .item {
        color: #555;
        font-weight: 500;
        background-color: #f1f1f1;
        margin-bottom: 10px;
        text-decoration: none;
        display: flex;
        padding: 6px;
        border-radius: 5px;
        cursor: pointer;
        &:hover {
            background-color: #d1d1d1;
        }
      }
  }
  
  #left-menu .image {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
    background-image: url('/Public/Images/DashboardBackground-min.png');
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
  }

