/* ================================
   MFG Order Tracking – Enterprise UI
   ================================ */

.mfg-tracker {
    max-width: 900px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
    color: #1f2937;
}

/* ================================
   Skeleton Loader
   ================================ */

.mfg-skeleton {
    background: linear-gradient(
        90deg,
        #e5e7eb 25%,
        #f3f4f6 37%,
        #e5e7eb 63%
    );
    background-size: 400% 100%;
    animation: skeleton 1.4s ease infinite;
    border-radius: 8px;
    margin-bottom: 14px;
}

@keyframes skeleton {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.mfg-skeleton.title { height: 24px; width: 40%; }
.mfg-skeleton.text { height: 14px; width: 80%; }
.mfg-skeleton.bar { height: 8px; width: 100%; }

/* ================================
   Stage Card
   ================================ */

.mfg-stage {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mfg-stage.current {
    border: 2px solid #3b82f6;
}

/* ================================
   Status Colors
   ================================ */

.mfg-stage.pending { border-left: 4px solid #9ca3af; }
.mfg-stage.in_progress { border-left: 4px solid #3b82f6; }
.mfg-stage.completed { border-left: 4px solid #10b981; }

/* ================================
   Titles & Text
   ================================ */

.mfg-stage-title {
    font-size: 18px;
    font-weight: 600;
}

.mfg-stage-desc {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

/* ================================
   Progress Bar
   ================================ */

.mfg-progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
    margin: 14px 0;
}

.mfg-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.6s ease;
}

/* ================================
   Progress Badge
   ================================ */

.mfg-progress-badge {
    display: inline-block;
    background: #111827;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 999px;
    margin-top: 6px;
}

/* ================================
   Images
   ================================ */

.mfg-stage img {
    max-width: 120px;
    border-radius: 8px;
    margin: 8px 8px 0 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mfg-stage img:hover {
    transform: scale(1.05);
}

/* ================================
   Lightbox
   ================================ */

.mfg-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.mfg-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

/* ================================
   Tracking Form
   ================================ */

.mfg-tracker form {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    margin-top: 30px;
}

.mfg-tracker input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

.mfg-tracker button {
    margin-top: 14px;
    background: #111827;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}