/* =========================
   CONTAINER
========================= */
.mlcc-container {
    max-width: 1300px;
    margin: auto;
    padding: 20px 12px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* TITLE */
.mlcc-container h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

/* =========================
   GRID (SMALL BOXES)
========================= */
.mlcc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* =========================
   CARD (COMPACT)
========================= */
.mlcc-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    position: relative;
}

/* hover */
.mlcc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

/* =========================
   TOP
========================= */
.mlcc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* TITLE */
.mlcc-top span:first-child {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

/* =========================
   STATUS (SMALL TAG)
========================= */
.status {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

/* COLORS */
.status.approved {
    background: #dcfce7;
    color: #16a34a;
}

.status.rejected {
    background: #fee2e2;
    color: #dc2626;
}

.status.pending {
    background: #fef3c7;
    color: #f59e0b;
}

/* =========================
   LEFT BORDER
========================= */
.mlcc-card.status-approved {
    border-left: 3px solid #16a34a;
}

.mlcc-card.status-rejected {
    border-left: 3px solid #dc2626;
}

.mlcc-card.status-pending {
    border-left: 3px solid #f59e0b;
}

/* =========================
   BODY TEXT
========================= */
.mlcc-body p {
    margin: 4px 0;
    font-size: 12px;
    color: #4b5563;
}

/* LABEL */
.mlcc-body b {
    color: #111;
}

/* APP NO highlight */
.mlcc-body p:first-child {
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1024px) {
    .mlcc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .mlcc-grid {
        grid-template-columns: 1fr;
    }

    .mlcc-card {
        padding: 12px;
    }
}