.mlcc-container { padding:20px; }

.mlcc-grid {
    display:grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.mlcc-card {
    background:#fff;
    border-radius:12px;
    padding:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.mlcc-card.status-approved { border-left:5px solid #16a34a; }
.mlcc-card.status-rejected { border-left:5px solid #dc2626; }
.mlcc-card.status-pending { border-left:5px solid #f59e0b; }

.mlcc-top {
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}

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