.mlcc-container{padding:20px;}
.mlcc-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;}
.mlcc-card{background:#fff;padding:15px;border-radius:10px;box-shadow:0 2px 8px rgba(0,0,0,0.1);}
.status-approved{border-left:5px solid green;}
.status-rejected{border-left:5px solid red;}
.status-pending{border-left:5px solid orange;}

.mlcc-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
    font-weight:bold;
}

.status {
    padding:3px 8px;
    border-radius:6px;
    font-size:12px;
    color:#fff;
}

.status-approved { background:green; }
.status-rejected { background:red; }
.status-pending { background:orange; }