.dash-main {
    padding-top: calc(var(--header-height));
    width: calc(100% - var(--sidebar-width));
    margin-left: calc(var(--sidebar-width));

    min-height: 100vh;
  }

@media (max-width: 767px) {
    .dash-main {
        /* padding-top: calc(var(--header-height) + 1rem); */
        width: calc(100%);
        margin-left: 0;
    }
}

.dash-content{
    padding: 30px var(--page-padding);

    min-height: calc(100vh - calc(var(--header-height)) - 53px);
}




.dash-footer {
    background: #F5F8F7;
    /* background: linear-gradient(94.78deg, #f1f1f1 2.26%, #f4f7f6 95.3%); */
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 8px;

    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    /* identical to box height */

    color: #102E32;

    
    padding: 18px var(--page-padding);
  }
  .dash-footer small {
    margin-left: 40px;
    font-weight: 600;
    color: #666;
  }

  .dash-footer .mode-indicator{
        display: flex;
        align-items: center;
    }
    .dash-footer .mode-indicator .mode-color{
        background: linear-gradient(143.84deg, #27AE60 22.05%, #24EF6F 51.32%, #04953A 94.06%);
        border-radius: 1000px;
        height: 16px;
        width: 16px;
        min-width: 16px;
    }
    .dash-footer .mode-indicator .mode-color.mode-text{
        background: linear-gradient(143.84deg, #FF0000 22.05%, #FB5C5C 51.32%, #8E0000 94.06%);
        border-radius: 1000px;
        height: 16px;
        width: 16px;
        min-width: 16px;
    }
