/* desktop.css
   Desktop-only layout rules. Base styles live in style.css; mobile overrides in mobile.css.
*/

@media (min-width: 901px) {
  /* Employee dashboard layout */
  .employee-dashboard.active-dash{
    display:flex !important;
    flex-direction:row !important;
    gap:22px !important;
    align-items:stretch !important;
    justify-content:flex-start !important;
    flex:1 1 auto !important;
    width:100% !important;
    max-width:100vw !important;
    box-sizing:border-box !important;
    margin:0 !important;
    padding:20px !important;
  }
  .employee-dashboard.active-dash .emp-sidebar{
    display:flex;
    flex-direction:column;
    width:282px;
    max-width:282px;
    align-self:stretch;
    height:auto !important;
    min-height:100%;
    flex:0 0 282px;
  }
  .employee-dashboard.active-dash .emp-nav{
    flex:1 1 auto;
  }
  .employee-dashboard.active-dash .emp-sidebar-footer{
    margin-top:auto;
  }
  .employee-dashboard.active-dash .emp-content{
    width:100%;
    max-width:100%;
    min-width:0;
    flex:1 1 auto;
  }
}
