.custom-status-dashboard {
    font-family: Arial, sans-serif;
    background-color: #e9e6ed; 
    padding: 10px;
    border-radius: 1px;
    width: 100%;               
    height: 100%;              
    box-sizing: border-box;    
    margin: 0;                 
}


.date-filters {
    margin-bottom: 15px;
}

.date-filters .button {
    margin-right: 5px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.status-box {
    background: #ffffff; 
    padding: 15px 6px; 
    border-radius: 1px; 
    box-shadow: 0 1px 2px rgba(0,0,0,0.1); 
    text-align: left;
    padding-bottom: 5px;  
}
#dashboard-widgets .status-box .status-box-title {
    font-size: 14px;
    font-weight: 700;         
    display: block;                     
    padding: 4px;       
    border-bottom: 1px solid #ccc; 
   
}

.status-value {
    font-size: 13px;
    color: #000000;
    margin-bottom: 0px;

}

.status-desc {
    font-size: 9px;
    color: #000000; 
    margin-bottom: 0;
    margin-top: 0;
}
@media (max-width: 1024px) {
    .status-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .status-box {
        flex: 1 1 calc(50% - 10px);
        box-sizing: border-box;
    }

    .date-filters {
        display: flex;
        flex-wrap: nowrap; 
        gap: 8px;
        justify-content: space-between; 
    }

    .date-filters .button {
        flex: 1 1 22%; 
        white-space: nowrap; 
        text-align: center;
    }
}


@media (max-width: 768px) {
    .status-grid {
        flex-direction: column;
    }

    .status-box {
        flex: 1 1 100%;
        width: 100%;
    }

    .status-value {
        font-size: 14px;
    }

    .status-box-title {
        font-size: 13px;
    }

    .status-desc {
        font-size: 10px;
    }

    .date-filters {
        flex-direction: column;
    }

    .date-filters .button {
        width: 100%;
    }
}
