
    .status-wrapper {
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        background: #f8fafc;
    }
    .status-card {
        background: white;
        max-width: 550px;
        width: 100%;
        padding: 50px;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        text-align: center;
    }
    .status-icon-box {
        position: relative;
        width: 80px;
        height: 80px;
        background: #fff4e5;
        color: #f59e0b;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        margin: 0 auto 30px;
    }
    /* Pulse Effect */
    .pulse-ring {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 4px solid #f59e0b;
        border-radius: 50%;
        animation: pulse 2s infinite;
    }
    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.5; }
        100% { transform: scale(1.5); opacity: 0; }
    }
    .timeline-container {
        display: flex;
        justify-content: space-between;
        margin: 40px 0;
        position: relative;
    }
    .timeline-container::before {
        content: '';
        position: absolute;
        top: 15px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: #e2e8f0;
        z-index: 1;
    }
    .timeline-item { position: relative; z-index: 2; width: 33%; }
    .timeline-item .dot {
        width: 32px;
        height: 32px;
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 50%;
        margin: 0 auto 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .timeline-item.completed .dot { background: #10b981; border-color: #10b981; color: white; }
    .timeline-item.active .dot { border-color: #f59e0b; background: #fffbeb; }
    .timeline-item .label { font-size: 13px; font-weight: 600; color: #64748b; }
    
    .info-details {
        background: #f1f5f9;
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 25px;
    }
    .detail-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        font-size: 14px;
    }
    .btn-home {
        display: inline-block;
        padding: 12px 30px;
        background: #1e293b;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        transition: 0.3s;
    }
    .btn-home:hover { background: #0f172a; }
