.mlcc-container {
    padding: 20px;
    font-family: Arial, sans-serif;
}

.mlcc-container h1 {
    margin-bottom: 20px;
}

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

.mlcc-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    border-left: 4px solid #ccc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.mlcc-card:hover {
    transform: translateY(-3px);
}

.status-approved {
    border-left-color: #2ecc71;
}

.status-rejected {
    border-left-color: #e74c3c;
}

.status-pending {
    border-left-color: #f1c40f;
}

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

.status {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.status.approved {
    background: #d4edda;
    color: #2e7d32;
}

.status.rejected {
    background: #f8d7da;
    color: #c0392b;
}

.status.pending {
    background: #fff3cd;
    color: #b7950b;
}

.mlcc-body p {
    margin: 5px 0;
    font-size: 14px;
}