#dashboard-widgets {
    #wpast-last-tickets .inside ul {
        margin: 8px -12px 0 -12px;
        li {
            padding: 4px 12px;
            .avatar {
                float: left;
                margin-right: 7px;
            }
            .wpast-status {
                display: inline-block;
                padding: 3px 10px;
                line-height: 16px;
                white-space: nowrap;
                border-radius: 3px;
                color: #ffffff;
            }
            p {
                color: #7b8086;
                margin-bottom: 0;
            }
        }
        li:nth-child(odd) {
            background-color: #f6f7f7;
        }
    }
}

#dashboard-widgets {
    #wpast-ticket-status .inside {
        padding: 0;
        margin: 0;
        overflow: hidden;
        > div {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            margin-bottom: -1px;
            margin-right: -1px;
            .wpast-status {
                display: flex;
                gap: 10px;
                align-items: center;
                padding: 9px 12px;
                border-bottom: 1px solid #e0e0e2;
                border-left: 1px solid #e0e0e2;
                border-right: 1px solid #e0e0e2;
                margin-bottom: -1px;
                margin-left: -1px;
                .wpast-status-color {
                    display: inline-block;
                    width: 20px;
                    height: 20px;
                    border-radius: 12px;
                }
                .wpast-status-count {
                    font-size: 18px;
                    line-height: 1.2em;
                    color: #21759b;
                    text-decoration: none;
                }
                .wpast-status-name {
                    font-size: 12px;
                    color: #aaa;
                }
            }
        }
    }
}