.dashboard-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard-content {
    display: flex;
    height: 100%;
    width: 100%;
}

.dashboard-content-body {
    display: flex;
    flex-direction: column;

    margin: 0.5rem;
    padding: 0.75rem;

    height: 100%;
    overflow: scroll;

    background-color: #ffffff;
}

.dashboard-panel-envelopes {
    display: flex;
    justify-content: space-around;
    align-items: center;

    height: 20%;
    width: 100%;
}

.dashboard-panel-item {
    height: 100%;
    width: 25%;
    padding: 0.75rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    white-space: nowrap;
    overflow: hidden;
}

.dashboard-panel-item-clickable:hover {
    background-color: #f4f6f9;
    cursor: pointer;
}

.dashboard-panel-item-number {
    font-size: 72px;
    font-weight: 900;
}

.dashboard-split-panel {
    height: 80%;
    width: 100%;


    display: flex;
    flex-direction: row;
    align-items: center;
}

.dashboard-column-panel {
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 100%;
    width: 50%;
    padding: 0.75rem;
}

.dashboard-panel-title {
    text-align: left;
    font-weight: 900;
    font-size: 1.25rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.dashboard-panel-signature {
    height: 40%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard-signature-pad {
    width: 100%;
    max-height: calc(100% - 1.75rem);
    border: 0px;
}

.dashboard-signature-pad:hover {
    cursor: pointer;
}

.dashboard-panel-recent {
    height: 60%;
    width: 100%;
}

.dashboard-panel-recent-table {
    overflow: scroll;
}

.dashboard-panel-usage {
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard-recent-item {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    width: 100%;
}

.dashboard-recent-item a {
    color: #f15e32;
}

.dashboard-recent-item .mm-slds-column {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-chart-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45%;
}

@media only screen and (max-width: 768px) {

    .dashboard-panel-envelopes {    
        height: 100%;
        width: 100%;
        flex-wrap: wrap;
    }

    .dashboard-panel-recent {
        height: unset;
    }

    .dashboard-panel-signature {
        height: unset;
    }
    
    .dashboard-panel-item {
        width: 50%;
        height: 50%;
    }
        
    .dashboard-split-panel {
        height: 100%;
        width: 100%;
    
    
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .dashboard-column-panel {    
        height: unset;
        width: 100%;
    }

    .dashboard-chart-container {
        width: 100%;
        height: fit-content;
    }

}