
        /* Mobile Dashboard Styles - Only for mobile */
        @media (max-width: 991.98px) {
            .mobile-dashboard-wrapper {
                font-family: 'Sora', sans-serif;
            }
            
            .mobile-dashboard-header {
                background: white;
                padding: 15px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                position: sticky;
                top: 0;
                z-index: 100;
            }
            
            .mobile-header-content {
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .mobile-logo {
                font-weight: 700;
                font-size: 18px;
                color: #0a165e;
            }
            
            .mobile-menu-toggle {
                background: none;
                border: none;
                font-size: 24px;
                color: #0a165e;
                cursor: pointer;
            }
            
            .mobile-dashboard-sidebar {
                background: white;
                width: 280px;
                padding: 15px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                position: fixed;
                top: 0;
                left: -100%;
                height: 100vh;
                overflow-y: auto;
                z-index: 1000;
                transition: left 0.3s ease;
            }
            
            .mobile-dashboard-sidebar.active {
                left: 0;
            }
            
            .mobile-sidebar-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 20px;
                padding-bottom: 15px;
                border-bottom: 1px solid #eee;
            }
            
            .mobile-close-sidebar {
                background: none;
                border: none;
                font-size: 24px;
                color: #0a165e;
                cursor: pointer;
            }
            
            .mobile-user-profile {
                display: flex;
                align-items: center;
                margin-bottom: 20px;
            }
            
            .mobile-user-avatar {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                overflow: hidden;
                margin-right: 15px;
                background: #f0f0f0;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .mobile-user-avatar img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            
            .mobile-user-info h3 {
                font-size: 16px;
                margin-bottom: 5px;
            }
            
            .mobile-user-info p {
                font-size: 14px;
                color: #666;
            }
            
            .mobile-sidebar-menu {
                list-style: none;
            }
            
            .mobile-sidebar-menu li {
                margin-bottom: 10px;
            }
            
            .mobile-sidebar-menu a {
                display: flex;
                align-items: center;
                padding: 12px 15px;
                color: #333;
                text-decoration: none;
                border-radius: 8px;
                transition: all 0.3s;
            }
            
            .mobile-sidebar-menu a:hover, 
            .mobile-sidebar-menu a.active {
                background: #f0f5ff;
                color: #0a165e;
            }
            
            .mobile-sidebar-menu a span {
                margin-right: 10px;
                font-size: 18px;
            }
            
            .mobile-menu-badge {
                background: #ff4757;
                color: white;
                border-radius: 50%;
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                margin-left: auto;
            }
            
            .mobile-dashboard-main {
                flex: 1;
                padding: 20px 15px;
            }
            
            .mobile-dashboard-title {
                font-size: 22px;
                margin-bottom: 20px;
                color: #0a165e;
            }
            
            .mobile-stats-grid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                margin-bottom: 25px;
            }
            
            .mobile-stat-card {
                background: white;
                border-radius: 10px;
                padding: 15px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
                display: flex;
                align-items: center;
            }
            
            .mobile-stat-icon {
                width: 40px;
                height: 40px;
                border-radius: 8px;
                background: #f0f5ff;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 15px;
                color: #0a165e;
                font-size: 18px;
            }
            
            .mobile-stat-content h3 {
                font-size: 18px;
                margin-bottom: 5px;
            }
            
            .mobile-stat-content p {
                font-size: 12px;
                color: #666;
            }
            
            .mobile-section-title {
                font-size: 18px;
                margin-bottom: 15px;
                color: #0a165e;
            }

            /* Mobile Orders Table Styles */
.mobile-orders-table-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow-x: auto;
}

.mobile-orders-table {
    width: 100%;
    min-width: 600px;
}

.mobile-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.mobile-table-body {
    width: 100%;
}

.mobile-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.mobile-table-row:last-child {
    border-bottom: none;
}

.mobile-order-id a {
    color: #0a165e;
    font-weight: 500;
    text-decoration: none;
    word-break: break-all;
}

.mobile-status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.mobile-status-pending {
    background: #fff3cd;
    color: #856404;
}

.mobile-status-completed {
    background: #d1edff;
    color: #0c5460;
}

.mobile-status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.mobile-status-processing {
    background: #d1ecf1;
    color: #0c5460;
}

.mobile-status-shipped {
    background: #d1f0ff;
    color: #0c5460;
}

.mobile-payment-paid {
    background: #d1ecf1;
    color: #0c5460;
}

.mobile-payment-unpaid {
    background: #f8d7da;
    color: #721c24;
}

.mobile-action-btn {
    background: #0a165e;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 0 auto;
}
            
            .mobile-orders-table-container {
                background: white;
                border-radius: 10px;
                overflow: hidden;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
                overflow-x: auto;
            }
            
            .mobile-orders-table {
                width: 100%;
                min-width: 600px;
            }
            
            .mobile-table-header {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
                gap: 10px;
                padding: 12px 15px;
                background: #f8f9fa;
                font-weight: 600;
                color: #333;
                font-size: 14px;
                border-bottom: 1px solid #eee;
            }
            .mobile-table-body {
                width: 100%;
            }
            .mobile-table-row {
                display: grid;
                grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
                gap: 10px;
                padding: 12px 15px;
                border-bottom: 1px solid #eee;
                align-items: center;
            }
            
            .mobile-table-row:last-child {
                border-bottom: none;
            }
            
            .mobile-order-id {
                grid-column: 1 / -1;
            }
            
            .mobile-order-id a {
                color: #0a165e;
                font-weight: 500;
                text-decoration: none;
                word-break: break-all;
            }
            
            .mobile-status-badge {
                 padding: 5px 10px;
                border-radius: 20px;
                font-size: 12px;
                font-weight: 500;
                display: inline-block;
                text-align: center;
                white-space: nowrap;
            }
            
            .mobile-status-pending {
                background: #fff3cd;
                color: #856404;
            }
            
            .mobile-status-completed {
                background: #d1edff;
                color: #0c5460;
            }
            
            .mobile-status-rejected {
                background: #f8d7da;
                color: #721c24;
            }
            
            .mobile-status-processing {
                background: #d1ecf1;
                color: #0c5460;
            }
            
            .mobile-status-shipped {
                background: #d1f0ff;
                color: #0c5460;
            }
            
            .mobile-payment-paid {
                background: #d1ecf1;
                color: #0c5460;
            }
            
            .mobile-payment-unpaid {
                background: #f8d7da;
                color: #721c24;
            }
            
            .mobile-action-btn {
                background: #0a165e;
                color: white;
                width: 36px;
                height: 36px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
            }
            
            .mobile-sidebar-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.5);
                z-index: 999;
                display: none;
            }
            
            .mobile-sidebar-overlay.active {
                display: block;
            }
            
            /* Hide original sidebar on mobile */
            .dashbord_sidebar {
                display: none;
            }
            /* Make sure the table cells are properly aligned */
            .mobile-table-header > div,
            .mobile-table-row > div {
                display: flex;
                align-items: center;
                min-height: 40px;
            }

            .mobile-table-row > div {
                font-size: 14px;
            }
            .mobile-status-pending {
                background: #fff3cd;
                color: #856404;
            }

            .mobile-status-completed {
                background: #d1edff;
                color: #0c5460;
            }

            .mobile-status-rejected {
                background: #f8d7da;
                color: #721c24;
            }

            .mobile-status-processing {
                background: #d1ecf1;
                color: #0c5460;
            }

            .mobile-status-shipped {
                background: #d1f0ff;
                color: #0c5460;
            }

            .mobile-payment-paid {
                background: #d1ecf1;
                color: #0c5460;
            }

            .mobile-payment-unpaid {
                background: #f8d7da;
                color: #721c24;
            }

            .mobile-action-btn {
                background: #0a165e;
                color: white;
                width: 36px;
                height: 36px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                margin: 0 auto;
            }


        }

        /* Responsive adjustments for very small screens */
@media (max-width: 480px) {
    .mobile-orders-table {
        min-width: 650px;
    }
    
    .mobile-table-header,
    .mobile-table-row {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
        gap: 8px;
        padding: 10px 12px;
    }
    
    .mobile-status-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
}
        @media (max-width: 991.98px) {
            .mobile-stat-card {
                padding: 5px;
            }
            .mobile-stat-content p {
                font-size: 11px !important;
                color: #666;
            }
        }
        
        /* Desktop - Hide mobile dashboard */
        @media (min-width: 992px) {
            .mobile-dashboard-wrapper {
                display: none !important;
            }
            .desktop-dashboard-wrapper {
                display: block !important;
            }
        }

 /* Mobile Pending Tasks Styles */
        .mobile-pending-tasks-wrapper {
            font-family: 'Sora', sans-serif;
        }

        .mobile-pending-tasks-main {
            padding: 20px 15px;
        }

        .mobile-pending-tasks-title {
            font-size: 22px;
            margin-bottom: 20px;
            color: #0a165e;
        }

        .mobile-alert-success {
            background: #d1fae5;
            color: #065f46;
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #a7f3d0;
        }

        .mobile-pending-tasks-section {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .mobile-section-header {
            margin-bottom: 20px;
        }

        .mobile-section-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
            color: #0a165e;
        }

        .mobile-section-description {
            color: #64748b;
            font-size: 14px;
            line-height: 1.5;
        }

        .mobile-tasks-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-task-card {
            background: #fff;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid #e6eef8;
            position: relative;
        }

        .mobile-task-card.full-width {
            text-align: center;
            padding: 30px 20px;
        }

        .mobile-task-status {
            position: absolute;
            top: 14px;
            right: 14px;
            background: #f59e0b;
            color: #fff;
            padding: 6px 10px;
            border-radius: 14px;
            font-weight: 700;
            font-size: 12px;
        }

        .mobile-task-icon {
            width: 56px;
            height: 56px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            margin-bottom: 12px;
        }

        .mobile-task-icon.resume {
            background: linear-gradient(135deg, #2B4DFF 0%, #040D43 100%);
        }

        .mobile-task-icon.linkedin {
            background: linear-gradient(135deg, #2B4DFF 0%, #040D43 100%);
        }

        .mobile-task-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #0a165e;
        }

        .mobile-task-card p {
            color: #64748b;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .mobile-task-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #2B4DFF;
            color: #fff;
            padding: 12px 16px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            border: none;
            font-size: 14px;
            width: 100%;
            justify-content: center;
        }

        .mobile-task-btn.linkedin {
            background: #2B4DFF;
        }

        /* Desktop styles - hide mobile on desktop */
        @media (min-width: 992px) {
            .mobile-pending-tasks-wrapper {
                display: none !important;
            }
            .desktop-pending-tasks-wrapper {
                display: block !important;
            }
        }

        
        /* Mobile Orders List Styles */
        .mobile-orders-wrapper {
            background: #f5f7fa;
            min-height: 100vh;
        }

        .mobile-orders-controls {
            margin-bottom: 20px;
        }

        .mobile-search-form {
            display: flex;
            gap: 10px;
        }

        .mobile-search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            background: white;
        }

        .mobile-search-btn {
            padding: 12px 15px;
            background: #2B4DFF;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-empty-state {
            background: white;
            border-radius: 10px;
            padding: 40px 20px;
            text-align: center;
            margin-bottom: 20px;
        }

        .mobile-empty-icon {
            font-size: 48px;
            color: #2B4DFF;
            margin-bottom: 15px;
        }

        .mobile-empty-state h3 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .mobile-empty-state p {
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .mobile-empty-btn {
            display: inline-block;
            padding: 10px 20px;
            background: #2B4DFF;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 500;
            font-size: 14px;
        }

        .mobile-orders-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 20px;
        }

        .mobile-order-item {
            background: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .mobile-order-item-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .mobile-order-id {
            font-weight: 600;
            color: #0a165e;
            font-size: 15px;
        }

        .mobile-status-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        .mobile-status-badge.pending {
            background: #fef3c7;
            color: #92400e;
        }

        .mobile-status-badge.completed {
            background: #d1fae5;
            color: #065f46;
        }

        .mobile-status-badge.rejected {
            background: #fee2e2;
            color: #991b1b;
        }

        .mobile-status-badge.processing {
            background: #bfdbfe;
            color: #1e3a8a;
        }

        .mobile-status-badge.shipped {
            background: #cffafe;
            color: #164e63;
        }

        .mobile-order-item-details {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f0f0f0;
        }

        .mobile-order-detail-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .mobile-detail-label {
            color: #666;
            font-weight: 500;
        }

        .mobile-detail-value {
            color: #333;
            font-weight: 500;
        }

        .mobile-payment-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
        }

        .mobile-payment-badge.paid {
            background: #d1fae5;
            color: #065f46;
        }

        .mobile-payment-badge.unpaid {
            background: #fee2e2;
            color: #991b1b;
        }

        .mobile-order-item-action {
            display: flex;
            gap: 8px;
        } 

        .mobile-view-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 15px;
            background: #2B4DFF;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
        }

        .mobile-pagination {
            background: white;
            border-radius: 10px;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-pagination-info {
            font-size: 12px;
            color: #666;
            font-weight: 500;
        }

        .mobile-pagination-controls {
            display: flex;
            gap: 10px;
        }

        .mobile-pagination-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border: 1px solid #e0e0e0;
            background: white;
            border-radius: 6px;
            color: #2B4DFF;
            cursor: pointer;
            text-decoration: none;
            font-size: 16px;
        }

        .mobile-pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            color: #ccc;
        }

        @media (max-width: 480px) {
            .mobile-orders-controls {
                margin-bottom: 15px;
            }

            .mobile-search-form {
                gap: 8px;
            }

            .mobile-search-form input {
                padding: 10px 12px;
                font-size: 13px;
            }

            .mobile-search-btn {
                padding: 10px 12px;
            }

            .mobile-order-item {
                padding: 12px;
            }

            .mobile-order-id {
                font-size: 12px;
            }

            .mobile-order-detail-row {
                font-size: 12px;
            }

            .mobile-view-btn {
                padding: 8px 12px;
                font-size: 13px;
            }

            .mobile-pagination {
                padding: 12px;
                flex-direction: column;
                gap: 12px;
            }
            .mobile-pending-tasks-section {             
                padding: 0px !important;
                box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.09) !important;
            }
            .mobile-section-title {
                font-size: 16px !important;
            }
            .mobile-task-card p {
                color: #64748b !important;
                font-size: 13.5px !important;
                line-height: 1.5 !important;
                margin-bottom: 15px !important;
            }
            .mobile-stat-content p {
                font-size: 11px !important;                
                line-height: 14px !important;
            }
            
            .mobile-dashboard-main {
                flex: 1 !important;
                padding: 20px 0px !important;
            }

        }

        /* Desktop Stat Cards - Enhanced styling */
        @media (min-width: 992px) {
            .desktop-dashboard-wrapper .mobile-stat-card {
                padding: 30px;
                border-radius: 12px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.08);
                transition: all 0.3s ease;
                flex-direction: column;
                align-items: flex-start;
                justify-content: space-between;
                background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
                border: 1px solid #e8eef8;
                min-height: 140px;
            }

            .desktop-dashboard-wrapper .mobile-stat-card:hover {
                box-shadow: 0 8px 25px rgba(10, 22, 94, 0.12);
                transform: translateY(-4px);
            }

            .desktop-dashboard-wrapper .mobile-stat-icon {
                width: 60px;
                height: 60px;
                border-radius: 12px;
                background: linear-gradient(135deg, #f0f5ff 0%, #e6eef8 100%);
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 0;
                margin-bottom: 15px;
                color: #0a165e;
                font-size: 32px;
                box-shadow: 0 2px 8px rgba(10, 22, 94, 0.08);
            }

            .desktop-dashboard-wrapper .mobile-stat-content h3 {
                font-size: 28px;
                font-weight: 700;
                margin-bottom: 8px;
                color: #0a165e;
            }

            .desktop-dashboard-wrapper .mobile-stat-content p {
                font-size: 14px;
                color: #64748b;
                font-weight: 500;
            }

            .desktop-dashboard-wrapper .mobile-dashboard-title {
                font-size: 28px;
                font-weight: 700;
                margin-bottom: 30px;
                color: #0a165e;
            }

            /* Action Icon Button Styling */
            .action-icon-btn {
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 8px !important;
                min-width: 45px !important;
            }

            .action-icon-btn i:first-child {
                font-size: 20px !important;
            }

            @media (max-width: 991.98px) {
                .action-icon-btn {
                    width: 45px !important;
                    height: 45px !important;
                    min-width: 45px !important;
                    padding: 0 !important;
                }

                .action-icon-btn i:first-child {
                    font-size: 20px !important;
                }
            }

            @media (min-width: 992px) {
                .action-icon-btn {
                    padding: 12px 20px !important;
                    min-width: auto !important;
                    height: auto !important;
                }

                .action-icon-btn i:first-child {
                    font-size: 24px !important;
                }

                .action-btn-text {
                    font-weight: 500;
                    font-size: 14px;
                }
            }
        }

        /* Pending Task Message Styles */
        .pending-task-message-mobile {
            margin-bottom: 2px;
            display: block;
        }

        .pending-task-title-mobile {
            margin: 0 0 8px 0;
            font-size: 13px;
            color: #92400e;
            line-height: 1.5;
            font-weight: 500;
        }

        .pending-task-cta-mobile {
            margin: 0;
            font-size: 12px !important;
            color: #666;
            font-weight: 500;
            line-height: 1.5;
        }

        .pending-task-message-desktop {
            padding: 2px 0px;
            margin-bottom: 2px;
            border-radius: 6px;
            display: none;
        }

        .pending-task-title-desktop {
            margin: 0 0 8px 0;
            font-size: 14px;
            color: #92400e;
            line-height: 1.6;
            font-weight: 500;
        }

        .pending-task-cta-desktop {
            margin: 0;
            font-size: 14px;
            color: #92400e;
            line-height: 1.6;
        }

        .pending-task-icon-mobile {
            margin-right: 6px;
            font-size: 14px;
        }

        .pending-task-icon-desktop {
            margin-right: 8px;
            font-size: 16px;
        }

        /* Submitted Message Styles */
        .submitted-message-mobile {
            margin-bottom: 2px;
            display: block;
        }

        .submitted-message-text-mobile {
            margin: 0;
            font-size: 12px !important;
            color: #646565;
            font-weight: 500;
            line-height: 1.5;
        }

        .submitted-message-desktop { 
            margin-bottom: 4px;
            display: none;
        }

        .submitted-message-text-desktop {
            margin: 0;
            font-size: 14px;
            color: #065f46;
            line-height: 1.6;
        }

        .submitted-message-icon-desktop {
            margin-right: 8px;
            font-size: 16px;
        }

        /* Responsive visibility for messages */
        @media (max-width: 991.98px) {
            .pending-task-message-mobile {
                display: block;
            }

            .pending-task-message-desktop {
                display: none;
            }

            .submitted-message-mobile {
                display: block;
            }

            .submitted-message-desktop {
                display: none;
            }
        }

        @media (min-width: 992px) {
            .pending-task-message-mobile {
                display: none;
            }

            .pending-task-message-desktop {
                display: block;
            }

            .submitted-message-mobile {
                display: none;
            }

            .submitted-message-desktop {
                display: block;
            }
        }

